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 are not appropriately updating the location of a given component within the overall VDOM when it changes position. This particular line is at fault - it just blindly copies the path from the old model instead of recomputing that path given the new parent and index (f"{new_parent.patch_path}/children/{new_index}").
We are not appropriately updating the location of a given component within the overall VDOM when it changes position. This particular line is at fault - it just blindly copies the path from the old model instead of recomputing that path given the new parent and index (
f"{new_parent.patch_path}/children/{new_index}"
).Discussed in #1081
Originally posted by numpde July 2, 2023
I'm confused about what's happening here. Consider this App:
I embed it from a Django template. Here's the equivalent ReactJS implementation for reference.
Now, when I delete Item A then click to color Item B, then unexpectedly, Item C appears overwritten.
reactpy==1.0.1
reactpy-django==3.2.0
The text was updated successfully, but these errors were encountered: