-
Notifications
You must be signed in to change notification settings - Fork 559
New issue
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
data binding to boolean expression fails #4261
Comments
@dclaux could you take a first pass? Cc: @jwoo-msft also here .. |
Hello @IntranetFactory we recently released an updated version of the designer package here https://www.npmjs.com/package/adaptivecards-designer as well as templating 1.0.0; Could you please retry and let us know if this works now for you? Thanks |
Problem still exists. I was even unable to bind any bool (see #4350) so I think problem is not only a boolean expression, but all bool data. |
🎉 Handy links: |
I need to bind
isVisible
to an expression returning a boolean.When I use the expression
"text": "n = ${count(records)}, visible ${count(records)>10}",
and records[] contains 7 objects I get, as expectedfalse
for${count(records)>10}
:But how can I now bind that to
isVisible
?"isVisible": ${count(records)>10}
is not valid json"isVisible": "${count(records)>10}"
seems to evaluate to true, at least the text is visibleThe text was updated successfully, but these errors were encountered: