mirror of
https://github.com/hcengineering/platform.git
synced 2024-11-26 04:23:58 +03: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
|
||||
}
|
||||
|
||||
if (!newQuery[filterKey]) {
|
||||
if (newQuery[filterKey] === null || newQuery[filterKey] === undefined) {
|
||||
newQuery[filterKey] = newValue
|
||||
} else {
|
||||
let merged = false
|
||||
|
Loading…
Reference in New Issue
Block a user