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
Possible bug found involving can-value. It seems that when cross-bounding with an input value a === comparison is being applied.
can-value
===
For example, given the following...
<input name="style" type="radio" can-value="styleId" value="{{id}}" />
If id is a Number and styleId is a String at the time the component initializes, these values will not be properly cross-bound.
id
styleId
I'll try to follow-up with a pull request shortly.
The text was updated successfully, but these errors were encountered:
Adding test for #811
db6a937
0e4cdfd
Adding fix for #811 from #813
100ad4c
No branches or pull requests
Possible bug found involving
can-value
. It seems that when cross-bounding with an input value a===
comparison is being applied.For example, given the following...
<input name="style" type="radio" can-value="styleId" value="{{id}}" />
If
id
is a Number andstyleId
is a String at the time the component initializes, these values will not be properly cross-bound.I'll try to follow-up with a pull request shortly.
The text was updated successfully, but these errors were encountered: