mirror of
https://github.com/umami-software/umami.git
synced 2026-02-13 09:05:36 +01:00
Fix search on settings table from dissappearing
This commit is contained in:
parent
6291654748
commit
55487ca725
1 changed files with 1 additions and 1 deletions
|
|
@ -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}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue