Correct doneState check

Signed-off-by: muhtimur <muhamedishin.timur@gmail.com>
Signed-off-by: muhtimur <timur.mukhamedishin@xored.com>
This commit is contained in:
muhtimur 2022-10-06 14:26:34 +07:00 committed by muhtimur
parent 84e03b8a46
commit 51fda7c3ac
No known key found for this signature in database
GPG Key ID: 55D11950D58D257E

View File

@ -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