Feature: preview application by ID by admin

- added ApplicationPreview page for admin;
- added a new table to admin dashboard with applications in draft;
This commit is contained in:
Vitalii Kiiko
2024-11-13 13:52:48 +01:00
parent 3f3c663ec3
commit 095ecf03e3
13 changed files with 679 additions and 28 deletions

View File

@@ -39,7 +39,7 @@ const MyLatestSubmissionsTable = () => {
setLocalAsyncRequest(true);
ApplicationService.getApplications(getApplCallback, errGetApplCallback, [
['companyId', chosenCompanyId],
['statuses', ['DRAFT', 'SUBMIT', 'AWAITING', 'READY', 'DISCARD']]
['statuses', ['DRAFT', 'AWAITING', 'READY']]
])
}, [chosenCompanyId]);