Skip to content

Commit

Permalink
sc-10111 Add Pending and Recently Completed Reissuances to Dashboard …
Browse files Browse the repository at this point in the history
…view
  • Loading branch information
elysee15 committed Oct 28, 2022
1 parent 8ca54b1 commit cae713e
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@

describe('<PendingReviewTable />', () => {

it.todo('should render only submitted and pending vasps')
})
2 changes: 1 addition & 1 deletion web/gds-admin-ui/src/redux/dashboard/saga.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ function* fetchSummary() {
function* fetchPendingVasps() {
NProgress.start()
try {
const response = yield call(getVasps, "status=pending+review")
const response = yield call(getVasps, "status=pending+review&status=verified")
const data = response.data
yield put(fetchVaspsApiResponseSuccess(FetchVaspsActionTypes.API_RESPONSE_SUCCESS, data))
NProgress.done()
Expand Down

0 comments on commit cae713e

Please sign in to comment.