Shorten document filter labels

This commit is contained in:
Tom Moor
2024-04-13 22:39:54 -04:00
parent ca4d85cf19
commit 34a8b8146d
2 changed files with 3 additions and 6 deletions

View File

@@ -14,15 +14,15 @@ const DocumentTypeFilter = ({ statusFilter, onSelect }: Props) => {
() => [
{
key: TStatusFilter.Published,
label: t("Published documents"),
label: t("Published"),
},
{
key: TStatusFilter.Archived,
label: t("Archived documents"),
label: t("Archived"),
},
{
key: TStatusFilter.Draft,
label: t("Draft documents"),
label: t("Drafts"),
},
],
[t]