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
This deprecation is being thrown when we use an array of ember-data records as rows:
deprecate.js:131 DEPRECATION: The objectAt method on the class RecordArray is deprecated. Use the native array method at instead. [deprecation id: ember-data:deprecate-array-like] This will be removed in Ember 5.0.
We can convert the record array to a pure JS array to fix the deprecation:
getrows(){returnthis.records.slice();}
Will ember-table handle this internally in the future?
The text was updated successfully, but these errors were encountered:
This deprecation is being thrown when we use an array of ember-data records as rows:
deprecate.js:131 DEPRECATION: The
objectAt
method on the class RecordArray is deprecated. Use the native array methodat
instead. [deprecation id: ember-data:deprecate-array-like] This will be removed in Ember 5.0.We can convert the record array to a pure JS array to fix the deprecation:
Will
ember-table
handle this internally in the future?The text was updated successfully, but these errors were encountered: