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
object is not extensible
Both addon are throwing TypeError: Cannot add property undefined, object is not extensible https://github.com/offirgolan/ember-cp-validations/blob/master/addon/validations/factory.js#L146 https://github.com/offirgolan/ember-parachute/blob/master/addon/query-params.js#L293
TypeError: Cannot add property undefined, object is not extensible
ValidationsMixin[Ember.NAME_KEY] = 'Validations'; Ember.NAME_KEY is undefined ValidationsMixin seems to be immutable
ValidationsMixin[Ember.NAME_KEY] = 'Validations';
undefined
Addons using Ember.NAME_KEY https://emberobserver.com/code-search?codeQuery=NAME_KEY&sort=score&sortAscending=false
Ember.NAME_KEY
The text was updated successfully, but these errors were encountered:
Steps to fix:
this[NAME_KEY] = null;
Object.seal(this)
toString
Sorry, something went wrong.
NAME_KEY
No branches or pull requests
Both addon are throwing
TypeError: Cannot add property undefined, object is not extensible
https://github.com/offirgolan/ember-cp-validations/blob/master/addon/validations/factory.js#L146
https://github.com/offirgolan/ember-parachute/blob/master/addon/query-params.js#L293
ValidationsMixin[Ember.NAME_KEY] = 'Validations';
Ember.NAME_KEY is
undefined
ValidationsMixin seems to be immutable
Addons using
Ember.NAME_KEY
https://emberobserver.com/code-search?codeQuery=NAME_KEY&sort=score&sortAscending=false
The text was updated successfully, but these errors were encountered: