Fix search on settings table from dissappearing

This commit is contained in:
Francis Cao 2023-09-21 13:51:16 -07:00
parent 6291654748
commit 55487ca725

View File

@ -36,7 +36,7 @@ export function SettingsTable({
return (
<>
{showSearch && !!value.length && (
{showSearch && (value.length > 0 || filterValue) && (
<SearchField
onChange={handleFilterChange}
delay={1000}