You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
With Ember 2.18.0 there is an update of Ember Inflector component which cases a deprecation error with EmberFire 2.0.9
DEPRECATION: Ember.String.pluralize() is deprecated. Please explicitly: import { pluralize } from 'ember-inflector'; [deprecation id: ember-inflector.globals]
which is used in adapters/firebase.js
* Determines a path fo a given type
*/
pathForType(modelName) {
var camelized = Ember.String.camelize(modelName);
return Ember.String.pluralize(camelized);
},
The text was updated successfully, but these errors were encountered:
Hello
With Ember 2.18.0 there is an update of Ember Inflector component which cases a deprecation error with EmberFire 2.0.9
DEPRECATION: Ember.String.pluralize() is deprecated. Please explicitly: import { pluralize } from 'ember-inflector'; [deprecation id: ember-inflector.globals]
which is used in
adapters/firebase.js
The text was updated successfully, but these errors were encountered: