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
We were updating our application to Ember 3.16 from 3.12 and found the following error thrown when the table is rendered initially. The error message is as follows.
Error: Assertion Failed: You attempted to update `[]` on `[object Object],
[object Object],[object Object]`, but it had already been used previously in the
same computation. Attempting to update a value after using it in a computation
can cause logical errors, infinite revalidation bugs, and performance issues,
and is not supported.
`[]` was first used:
- While rendering:
----------------
this.data
The error is thrown when i try to create a table by passing the model and then when i try to sort the table by our custom sort function and calling table.setRows(sortedModel).
This was working fine until Ember 3.12. I have created a twiddle to reproduce the issue with minimal code possible. I think this might be similar to the issue reported in ember-table addon
Thanks
The text was updated successfully, but these errors were encountered:
We were updating our application to Ember 3.16 from 3.12 and found the following error thrown when the table is rendered initially. The error message is as follows.
The error is thrown when i try to create a table by passing the
model
and then when i try to sort the table by our custom sort function and callingtable.setRows(sortedModel)
.This was working fine until Ember 3.12. I have created a twiddle to reproduce the issue with minimal code possible. I think this might be similar to the issue reported in ember-table addon
Thanks
The text was updated successfully, but these errors were encountered: