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
AttributeOperations are shallow. It means that, for example, if AttributeOperation changes range [ 1 ] - [ 3 ] only elements on offset 1 and 2 are changed but their children not.
In Differ, we forgot about that and by mistake Differ tried to work on children of elements when attribute operation was executed which leads to a crash in certain scenarios.
The text was updated successfully, but these errors were encountered:
AttributeOperation
s are shallow. It means that, for example, ifAttributeOperation
changes range[ 1 ] - [ 3 ]
only elements on offset1
and2
are changed but their children not.In
Differ
, we forgot about that and by mistakeDiffer
tried to work on children of elements when attribute operation was executed which leads to a crash in certain scenarios.The text was updated successfully, but these errors were encountered: