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
There is only one _this._data array per ObservableCursor, that gets passed around by reference to all _observers every time _handleChange runs. As a result, downstream consumers that try to filter out null changes (such as Angular's | async pipe, which relies on WrappedValue) get confused, as they compare old and new values by keeping a reference to the old one.
There is only one
_this._data
array perObservableCursor
, that gets passed around by reference to all_observers
every time_handleChange
runs. As a result, downstream consumers that try to filter out null changes (such as Angular's| async
pipe, which relies onWrappedValue
) get confused, as they compare old and new values by keeping a reference to the old one.#100 might be a symptom of the same cause.
The text was updated successfully, but these errors were encountered: