From ab7de6cf0c503253746738a6442eb36b21a01247 Mon Sep 17 00:00:00 2001 From: jaybuidl Date: Sat, 7 Oct 2023 00:53:34 +0100 Subject: [PATCH] feat: more filters --- web/src/components/CasesDisplay/Filters.tsx | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/web/src/components/CasesDisplay/Filters.tsx b/web/src/components/CasesDisplay/Filters.tsx index 01b5cc639..d22d95a41 100644 --- a/web/src/components/CasesDisplay/Filters.tsx +++ b/web/src/components/CasesDisplay/Filters.tsx @@ -71,7 +71,10 @@ const Filters: React.FC = () => { items={[ { value: JSON.stringify({}), text: "All Cases", dot: theme.primaryText }, { value: JSON.stringify({ ruled: false }), text: "In Progress", dot: theme.primaryBlue }, - { value: JSON.stringify({ period: "appeal" }), text: "Appeal", dot: theme.tint }, + { value: JSON.stringify({ period: "evidence" }), text: "Submitting Evidence", dot: theme.primaryBlue }, + { value: JSON.stringify({ period: "commit" }), text: "Committing Vote", dot: theme.primaryBlue }, + { value: JSON.stringify({ period: "vote" }), text: "Voting", dot: theme.primaryBlue }, + { value: JSON.stringify({ period: "appeal" }), text: "Crowdfunding Appeal", dot: theme.tint }, { value: JSON.stringify({ ruled: true }), text: "Closed", dot: theme.primaryPurple }, ]} defaultValue={JSON.stringify({ ruled, period })}