-
-
Notifications
You must be signed in to change notification settings - Fork 1.3k
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
Ember 2.10.2 + Ember Data 2.10.0 has bugs on relationships #5161
Comments
Please have a look at this twiddle to reproduce: [https://ember-twiddle.com/305861d9a5e157117f350afa59215cb0?openFiles=routes.application.js%2C] //models/parent.js
export default Model.extend({
child: belongsTo('child'),
children: hasMany('child', {inverse: 'parentHasMany'})
}); all
|
Can someone look at this? Looks like a very big bug to me, is it not (acceptance) tested? |
Closing as this bug solved in most recent versions. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
For example, a REST relationship failing because of an API error resolves the second time it is called (id(s) are set to null after first failure).
Updating Ember Data to 2.11.0 resolves the issue.
The text was updated successfully, but these errors were encountered: