diff --git a/plugins/view-resources/src/components/filter/FilterBar.svelte b/plugins/view-resources/src/components/filter/FilterBar.svelte index 87cd186d4d..724728af80 100644 --- a/plugins/view-resources/src/components/filter/FilterBar.svelte +++ b/plugins/view-resources/src/components/filter/FilterBar.svelte @@ -119,7 +119,7 @@ filterKey = attr.attributeOf + '.' + filter.key.key } - if (!newQuery[filterKey]) { + if (newQuery[filterKey] === null || newQuery[filterKey] === undefined) { newQuery[filterKey] = newValue } else { let merged = false