-
Notifications
You must be signed in to change notification settings - Fork 2k
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
bindings to concrete types not propagating correctly from template to collection #1839
Labels
Comments
Might be related. this.push('test', {value: 1});
this.set('test.0.value', 2);
this.set('test.0',{value: 3});
this.set('test.0.value', 4); The result is 3 but in the model is 4. |
This should be fixed by PR #1855. Confirmed it fixes repro case here: |
This was referenced Jun 12, 2015
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Given:
changes to
paper-input.value
appear intemplate.getModelForElement(paper-input).item
but not intemplate.items[n]
.http://jsbin.com/qocuka/2/edit
The text was updated successfully, but these errors were encountered: