mirror of
https://github.com/hcengineering/platform.git
synced 2024-12-23 03:22:19 +03:00
Merge pull request #2284 from hcengineering/fix/TSK-310
Fix bug with wrong filtering by doneState in Applications
This commit is contained in:
commit
b2b6b6de90
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user