Skip to content

Commit

Permalink
fix: disable search for aspect and slope location filter
Browse files Browse the repository at this point in the history
  • Loading branch information
friedjoff committed May 1, 2020
1 parent 70875a6 commit f01cdec
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/components/LocationForm.js
Original file line number Diff line number Diff line change
Expand Up @@ -308,6 +308,7 @@ function LocationForm() {
content: (
<Dropdown
multiple
search={false}
options={options.aspect}
onChange={(e, { value: aspects }) =>
dispatch(setFormLocation({ aspects }))
Expand All @@ -324,6 +325,7 @@ function LocationForm() {
content: (
<Dropdown
multiple
search={false}
options={options.slope}
onChange={(e, { value: slopes }) =>
dispatch(setFormLocation({ slopes }))
Expand Down

0 comments on commit f01cdec

Please sign in to comment.