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 ( return (
<> <>
{showSearch && !!value.length && ( {showSearch && (value.length > 0 || filterValue) && (
<SearchField <SearchField
onChange={handleFilterChange} onChange={handleFilterChange}
delay={1000} delay={1000}