We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When I have a template with a Boolean field, it persists as '' (empty string) when I apply it. Only after I select and unselect it is false persisted.
''
false
This leads to inconsistent behavior when I use the property in a condition, like
"condition": { "property": "myBooleanProp", "equals": false }
When first applying a Boolean property, assume a default value of false if none is given.
'' == false
Discovered in #84 (comment)
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Is your feature request related to a problem? Please describe.
When I have a template with a Boolean field, it persists as
''
(empty string) when I apply it. Only after I select and unselect it isfalse
persisted.This leads to inconsistent behavior when I use the property in a condition, like
Describe the solution you'd like
When first applying a Boolean property, assume a default value of
false
if none is given.Describe alternatives you've considered
false
'' == false
)Additional context
Discovered in #84 (comment)
The text was updated successfully, but these errors were encountered: