Fix #4490. Fix fundamental bug where get_pset would return none for inherited props with a boolean False value.

This commit is contained in:
Dion Moult
2024-04-10 12:57:52 +10:00
parent f5c5fba151
commit bee1e21f0e
3 changed files with 6 additions and 3 deletions
+1 -1
View File
@@ -209,7 +209,7 @@ class ImportFilterQueryTransformer(lark.Transformer):
return (
is_not
+ {
"equals": "", # Blank because it's the default situation
"equals": "=" if is_not else "", # Blank because it's the default situation
"morethanequalto": ">=",
"lessthanequalto": "<=",
"morethan": ">",