From 6e70da7940259295db00cb58ec5b5ef373391e9c Mon Sep 17 00:00:00 2001 From: Olga Polikashina Date: Tue, 11 Jun 2024 17:55:35 +0300 Subject: [PATCH] fix: remove delay for filtering table settings --- .../hoc/withTableSettings/TableColumnSetup/TableColumnSetup.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/Table/hoc/withTableSettings/TableColumnSetup/TableColumnSetup.tsx b/src/components/Table/hoc/withTableSettings/TableColumnSetup/TableColumnSetup.tsx index a3af3d6b64..e0828ff09a 100644 --- a/src/components/Table/hoc/withTableSettings/TableColumnSetup/TableColumnSetup.tsx +++ b/src/components/Table/hoc/withTableSettings/TableColumnSetup/TableColumnSetup.tsx @@ -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(({id, isSelected}) => ({id, isSelected}));