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* yarn-error.log*
# local env files # local env files
*.env .env
.env.*
*.dev.yml *.dev.yml

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}