Skip to content

Commit 735b592

Browse files
committed
feat: more filters
1 parent f29a40d commit 735b592

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

web/src/components/CasesDisplay/Filters.tsx

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,8 +71,11 @@ const Filters: React.FC = () => {
7171
items={[
7272
{ value: JSON.stringify({}), text: "All Cases", dot: theme.primaryText },
7373
{ value: JSON.stringify({ ruled: false }), text: "In Progress", dot: theme.primaryBlue },
74+
{ value: JSON.stringify({ period: "evidence" }), text: "Submitting Evidence", dot: theme.primaryBlue },
75+
{ value: JSON.stringify({ period: "commit" }), text: "Committing Vote", dot: theme.primaryBlue },
76+
{ value: JSON.stringify({ period: "vote" }), text: "Voting", dot: theme.primaryBlue },
77+
{ value: JSON.stringify({ period: "appeal" }), text: "Crowdfunding Appeal", dot: theme.tint },
7478
{ value: JSON.stringify({ ruled: true }), text: "Closed", dot: theme.primaryPurple },
75-
{ value: JSON.stringify({ period: "appeal" }), text: "Appeal", dot: theme.tint },
7679
]}
7780
defaultValue={JSON.stringify({ ruled, period })}
7881
callback={handleStatusChange}

0 commit comments

Comments
 (0)