fix: add missing filter option (#6879)

This commit is contained in:
Johannes
2025-11-25 00:55:34 -08:00
committed by GitHub
parent be4b54a827
commit 628de8e6ae

View File

@@ -31,9 +31,10 @@ const getCreatorOptions = (t: TFunction): TFilterOption[] => [
];
const getStatusOptions = (t: TFunction): TFilterOption[] => [
{ label: t("common.draft"), value: "draft" },
{ label: t("common.in_progress"), value: "inProgress" },
{ label: t("common.paused"), value: "paused" },
{ label: t("common.completed"), value: "completed" },
{ label: t("common.draft"), value: "draft" },
];
const getSortOptions = (t: TFunction): TSortOption[] => [