This commit is contained in:
Timur Ercan
2023-02-23 19:17:59 +01:00
parent 61ce364b07
commit 6cf9b6c6bf
2 changed files with 3 additions and 3 deletions

View File

@ -26,7 +26,7 @@ const DocumentsPage: NextPageWithLayout = (props: any) => {
const statusFilters = [
{ label: "All", value: "ALL" },
{ label: "Draft", value: "DRAFT" },
{ label: "Pending", value: "PENDING" },
{ label: "Waiting for others", value: "PENDING" },
{ label: "Completed", value: "COMPLETED" },
];
const createdFilter = [
@ -424,7 +424,7 @@ function formatDocumentStatus(status: DocumentStatus) {
return "Draft";
case DocumentStatus.PENDING:
return "Pending";
return "Waiting for others";
case DocumentStatus.COMPLETED:
return "Completed";

View File

@ -100,7 +100,7 @@ function formatDocumentStatus(status: DocumentStatus) {
return "Draft";
case DocumentStatus.PENDING:
return "Pending";
return "Waiting for others";
case DocumentStatus.COMPLETED:
return "Completed";