mirror of
https://github.com/hcengineering/platform.git
synced 2024-12-23 11:31:57 +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
|
filterKey = attr.attributeOf + '.' + filter.key.key
|
||||||
}
|
}
|
||||||
|
|
||||||
if (newQuery[filterKey] === undefined) {
|
if (newQuery[filterKey] === null || newQuery[filterKey] === undefined) {
|
||||||
newQuery[filterKey] = newValue
|
newQuery[filterKey] = newValue
|
||||||
} else {
|
} else {
|
||||||
let merged = false
|
let merged = false
|
||||||
|
Loading…
Reference in New Issue
Block a user