Merge pull request #2284 from hcengineering/fix/TSK-310

Fix bug with wrong filtering by doneState in Applications
This commit is contained in:
Timur Mukhamedishin 2022-10-06 16:43:40 +07:00 committed by GitHub
commit b2b6b6de90
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -119,7 +119,7 @@
filterKey = attr.attributeOf + '.' + filter.key.key
}
if (newQuery[filterKey] === undefined) {
if (newQuery[filterKey] === null || newQuery[filterKey] === undefined) {
newQuery[filterKey] = newValue
} else {
let merged = false