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
length
While working on one of our projects, I encountered an error which I managed to boil down to the following:
Ember.isEmpty(Ember.ObjectProxy.create({ content: Ember.ArrayProxy.create({ content: Ember.A([]) }) }))
Looks like a regression caused by utilisation of ES5 getters, it worked in Ember 3.0.0.
It breaks for example ember-changeset with ember-data-model-fragments.
ember-changeset
ember-data-model-fragments
The text was updated successfully, but these errors were encountered:
Fix isEmpty on nested objects
053db77
So ArrayProxy inside ObjectProxy works with ES5 getters Fixes emberjs#16878
4d02c25
So ArrayProxy inside ObjectProxy works with ES5 getters Fixes #16878
Successfully merging a pull request may close this issue.
While working on one of our projects, I encountered an error which I managed to boil down to the following:
Looks like a regression caused by utilisation of ES5 getters, it worked in Ember 3.0.0.
It breaks for example
ember-changeset
withember-data-model-fragments
.The text was updated successfully, but these errors were encountered: