Skip to content

Commit

Permalink
Fixes some React warning
Browse files Browse the repository at this point in the history
  • Loading branch information
jacomyal committed Jan 30, 2024
1 parent 9ee0146 commit df7a044
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/GraphFilters/TermsFilter.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ const TermsFilterEditor: FC<{ filter: TermsFilterType }> = ({ filter }) => {
className="form-check-input me-2"
type="checkbox"
id="keepMissingValues"
checked={filter.keepMissingValues}
checked={!!filter.keepMissingValues}
onChange={(e) => {
replaceCurrentFilter({ ...filter, keepMissingValues: e.target.checked });
}}
Expand Down

0 comments on commit df7a044

Please sign in to comment.