Skip to content

Commit

Permalink
feat: change filter order
Browse files Browse the repository at this point in the history
  • Loading branch information
braianj committed Feb 23, 2024
1 parent 3829088 commit 3300c24
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions src/components/Event/ListEvents/ListEvents.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -275,6 +275,14 @@ export const ListEvents = React.memo((props: ListEventsProps) => {
/>
)}

<ToggleBox
header="Date"
onClick={handleDateChange}
items={dateItems}
value={props.filters.timeReference || undefined}
borderless
/>

<SliderField
range={true}
header="Event Time"
Expand All @@ -295,14 +303,6 @@ export const ListEvents = React.memo((props: ListEventsProps) => {
items={typeItems}
value={props.filters.type}
/>

<ToggleBox
header="Date"
onClick={handleDateChange}
items={dateItems}
value={props.filters.timeReference || undefined}
borderless
/>
</Grid.Column>
)}
<Grid.Column tablet={showFilters ? 12 : 16}>
Expand Down

0 comments on commit 3300c24

Please sign in to comment.