Skip to content

Commit

Permalink
fix: remove delay for filtering table settings
Browse files Browse the repository at this point in the history
  • Loading branch information
polikashina committed Jun 11, 2024
1 parent e8a3494 commit 6e70da7
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -325,7 +325,7 @@ export const TableColumnSetup = (props: TableColumnSetupProps) => {
setItems(propsItems);
}

const filterState = useListFilter({items, filterItem: filterSettings});
const filterState = useListFilter({items, filterItem: filterSettings, debounceTimeout: 0});

const onApply = () => {
const newSettings = items.map<TableSetting>(({id, isSelected}) => ({id, isSelected}));
Expand Down

0 comments on commit 6e70da7

Please sign in to comment.