Merge remote-tracking branch 'origin/dev' into dev

This commit is contained in:
Mike Cao 2023-09-21 17:30:58 -07:00
commit 326bc9f8fa
2 changed files with 3 additions and 2 deletions

3
.gitignore vendored
View File

@ -33,7 +33,8 @@ yarn-debug.log*
yarn-error.log*
# local env files
*.env
.env
.env.*
*.dev.yml

View File

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