Skip to content

Commit

Permalink
fix tslint
Browse files Browse the repository at this point in the history
  • Loading branch information
riahk committed Sep 13, 2022
1 parent 3c8b1d8 commit e8a8bf3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ import { FilterContainer, BaseFilter, FilterHandler } from './Base';
interface SelectFilterProps extends BaseFilter {
fetchSelects?: Filter['fetchSelects'];
name?: string;
onSelect: (selected: SelectOption | undefined) => void;
onSelect: (selected: SelectOption | undefined, isClear?: boolean) => void;
paginate?: boolean;
selects: Filter['selects'];
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ function UIFilters(
name={id}
onSelect={(
option: SelectOption | undefined,
isClear: boolean,
isClear?: boolean,
) => {
if (onFilterUpdate) {
// Filter change triggers both onChange AND onClear, only want to track onChange
Expand Down

0 comments on commit e8a8bf3

Please sign in to comment.