mirror of
https://github.com/hcengineering/platform.git
synced 2025-06-07 08:21:08 +00:00
Correct doneState check
Signed-off-by: muhtimur <muhamedishin.timur@gmail.com> Signed-off-by: muhtimur <timur.mukhamedishin@xored.com>
This commit is contained in:
parent
84e03b8a46
commit
51fda7c3ac
@ -119,7 +119,7 @@
|
|||||||
filterKey = attr.attributeOf + '.' + filter.key.key
|
filterKey = attr.attributeOf + '.' + filter.key.key
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!newQuery[filterKey]) {
|
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