Merge pull request #14774 from Budibase/fix/any-filter

Fix all or property
This commit is contained in:
Adria Navarro 2024-10-11 16:59:31 +02:00 committed by GitHub
commit 8d4e27ea27
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -172,7 +172,7 @@ export const processSearchFilters = (
.sort((a, b) => {
return a.localeCompare(b)
})
.filter(key => key in filter)
.filter(key => filter[key])
if (filterPropertyKeys.length == 1) {
const key = filterPropertyKeys[0],