Skip to content

Commit

Permalink
Merge pull request #199 from Dias999/feature/FilterModule-Fix_select_…
Browse files Browse the repository at this point in the history
…onChange

feat: fix filterModule select onchange bug
  • Loading branch information
andreneto97 authored Sep 6, 2024
2 parents 1a0264f + 93595f9 commit a426e5b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@ const FilterSubmodule = (props: Props) => {
type,
options,
value: value as string,
onChange: (val: string | null) => onFilterChange(id, val, false),
onChange: (val: string | null) => onFilterChange(id, val, true),
};

case 'date':
Expand Down

0 comments on commit a426e5b

Please sign in to comment.