File tree Expand file tree Collapse file tree 2 files changed +6
-1
lines changed Expand file tree Collapse file tree 2 files changed +6
-1
lines changed Original file line number Diff line number Diff 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 >
Original file line number Diff line number Diff 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" >
You can’t perform that action at this time.
0 commit comments