Skip to content

Commit ec0a774

Browse files
authored
Merge pull request #33 from opexdev/develop
Add Canceled Field to Withdraws
2 parents f96af7a + 36749f8 commit ec0a774

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

src/components/SimplePagination/SimplePagination.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ const SimplePagination = ({paginate, length}) => {
1414
}
1515

1616
return (
17-
<nav aria-label="Page navigation example">
17+
<nav aria-label="Page navigation">
1818
<ul className="pagination justify-content-center">
1919
<li className={`page-item ${paginate.page === 1 ? "disabled" : ""}`}>
2020
<button className="page-link" onClick={pervPage}>Previous</button>

src/pages/Withdraws/Withdraws.js

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,11 @@ const Withdraws = () => {
3737
defaultChecked={status === "REJECTED"} id="REJECTED"/>
3838
<label className="form-check-label" htmlFor="REJECTED">Rejected</label>
3939
</div>
40+
<div className="form-check form-check-inline">
41+
<input className="form-check-input primary-bg" type="radio" name="status" value="CANCELED"
42+
defaultChecked={status === "CANCELED"} id="CANCELED"/>
43+
<label className="form-check-label" htmlFor="CANCELED">Canceled</label>
44+
</div>
4045
</div>
4146
<div className="d-flex flex-column justify-content-between align-items-center" style={{width: "100%"}}>
4247
<table className="table table-bordered rounded text-center col-12 striped">

0 commit comments

Comments
 (0)