Skip to content

Commit

Permalink
#3896: Consistently use Form.Select for selects
Browse files Browse the repository at this point in the history
  • Loading branch information
gjvoosten committed Oct 20, 2021
1 parent 9ead4bc commit 0936f19
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions client/src/components/advancedSearch/ReportStateFilter.js
Original file line number Diff line number Diff line change
Expand Up @@ -61,9 +61,8 @@ const ReportStateFilter = ({
stateDisplay
) : (
<Form.Group>
<Form.Control
<Form.Select
id={queryKey}
as="select"
value={value.state}
onChange={handleChangeState}
multiple
Expand All @@ -73,7 +72,7 @@ const ReportStateFilter = ({
{label}
</option>
))}
</Form.Control>
</Form.Select>
{onlyCancelled && (
<div style={{ verticalAlign: "top", paddingLeft: "8px" }}>
due to{" "}
Expand Down

0 comments on commit 0936f19

Please sign in to comment.