mirror of
https://github.com/umami-software/umami.git
synced 2026-02-04 04:37:11 +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 (
|
||||
<>
|
||||
{showSearch && !!value.length && (
|
||||
{showSearch && (value.length > 0 || filterValue) && (
|
||||
<SearchField
|
||||
onChange={handleFilterChange}
|
||||
delay={1000}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue