mirror of
https://github.com/documenso/documenso.git
synced 2025-11-13 16:23:06 +10:00
💬
This commit is contained in:
@ -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";
|
||||
|
||||
@ -100,7 +100,7 @@ function formatDocumentStatus(status: DocumentStatus) {
|
||||
return "Draft";
|
||||
|
||||
case DocumentStatus.PENDING:
|
||||
return "Pending";
|
||||
return "Waiting for others";
|
||||
|
||||
case DocumentStatus.COMPLETED:
|
||||
return "Completed";
|
||||
|
||||
Reference in New Issue
Block a user