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
In this case, I have a store which produces the project object (not observable) with a test property (observable).
The problem is that if project changes, the subscription for test doesn't update to the new project.test -- so subsequent updates from the new project's test observable are not observed by the component.
How can this be addressed?
The text was updated successfully, but these errors were encountered:
I have the following scenario:
In this case, I have a store which produces the
project
object (not observable) with atest
property (observable).The problem is that if
project
changes, the subscription fortest
doesn't update to the newproject.test
-- so subsequent updates from the new project'stest
observable are not observed by the component.How can this be addressed?
The text was updated successfully, but these errors were encountered: