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
After removing the item from the list the item's node can still exist in the virtual domPool element so its component isn't destroyed and can be updated by Ember.
This behavior isn't working for computed fields on the ember models. Ember rejects the error when trying to access the computed property on the destroyed object if it hasn't been consumed before.
Assertion Failed: Attempted to access the computed `computedProperty` on a destroyed object, which is not allowed.
Expected behavior: if the item is removed from the items list, this node shouldn't be updated or should be removed.
The text was updated successfully, but these errors were encountered:
After removing the item from the list the item's node can still exist in the virtual
domPool
element so its component isn't destroyed and can be updated by Ember.This behavior isn't working for computed fields on the ember models. Ember rejects the error when trying to access the computed property on the destroyed object if it hasn't been consumed before.
Expected behavior: if the item is removed from the items list, this node shouldn't be updated or should be removed.
The text was updated successfully, but these errors were encountered: