Fix all or property

This commit is contained in:
Adria Navarro 2024-10-11 16:41:51 +02:00
parent abb01ba98a
commit 64d4aef87d
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],