From cea5e6514292ba2365667b8b09da16bbd92d3e6c Mon Sep 17 00:00:00 2001 From: Leah Mamaril <8636027+Lmamaril@users.noreply.github.com> Date: Tue, 25 Feb 2020 21:02:50 -0800 Subject: [PATCH] Added Other to the defaultSearchFilter, need to fix meetingType --- src/components/Home/EventsTable/eventsConstants.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/components/Home/EventsTable/eventsConstants.js b/src/components/Home/EventsTable/eventsConstants.js index 6352aa6..209d041 100644 --- a/src/components/Home/EventsTable/eventsConstants.js +++ b/src/components/Home/EventsTable/eventsConstants.js @@ -42,6 +42,7 @@ export const searchFilters = { sortOn: ['Date', 'State', 'Name'] } +// TODO: Having no filters should not hide the data. export const defaultSearchFilters = { party: ['Democratic', 'Republican', 'Independent'], meetingType: [ @@ -49,7 +50,8 @@ export const defaultSearchFilters = { 'Empty Chair Town Hall', 'Campaign Town Hall', 'Youth Vote', - 'Voting Rights' + 'Voting Rights', + 'Other' ], sortOn: 'Date' }