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
new A
This addon is causing the following error to be thrown when used in an Ember 3.13 app (and likely with earlier versions too):
Error: Assertion Failed: You cannot create an Ember Array with new A(), please update to calling A as a function: A()
new A()
A()
The fix should be trivial (remove new). See https://deprecations.emberjs.com/v3.x/#toc_array-new-array-wrapper
new
Here is the offending line:
ember-composability/addon/mixins/parent-component-support.js
Line 22 in 18c663d
The text was updated successfully, but these errors were encountered:
fix: don't call Ember.A as a constructor (fixes mike-north#179)
30b10d7
This is related with this problem I'm having with the library ember-cli-materialize, don't know how to use this changes.
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
This addon is causing the following error to be thrown when used in an Ember 3.13 app (and likely with earlier versions too):
The fix should be trivial (remove
new
).See https://deprecations.emberjs.com/v3.x/#toc_array-new-array-wrapper
Here is the offending line:
ember-composability/addon/mixins/parent-component-support.js
Line 22 in 18c663d
The text was updated successfully, but these errors were encountered: