diff --git a/.gitignore b/.gitignore index 32e3ef0b..050397c9 100644 --- a/.gitignore +++ b/.gitignore @@ -33,7 +33,8 @@ yarn-debug.log* yarn-error.log* # local env files -*.env +.env +.env.* *.dev.yml diff --git a/src/components/common/SettingsTable.js b/src/components/common/SettingsTable.js index a74581ca..701dbe13 100644 --- a/src/components/common/SettingsTable.js +++ b/src/components/common/SettingsTable.js @@ -36,7 +36,7 @@ export function SettingsTable({ return ( <> - {showSearch && !!value.length && ( + {showSearch && (value.length > 0 || filterValue) && (