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 app if I remove a checked item from the list, the checkbox for that row and the one below get into a bad state. (hard to explain precisely, better to try it out for yourself)
This is most likely a pooling issue, but since I don't have globally unique IDs for these todo items, I can't rely on using a key. Besides, a simple example like this shouldn't require a more advanced feature like that imo.
The text was updated successfully, but these errors were encountered:
Yeah, looks like we need to add special-cases for attributes like checked and disabled.
Deku is adding checked="true" as an HTML attribute, and the raw element shows el.checked === false. Looks like we need to take those cases and set both the DOM property and the HTML attribute.
In this app if I remove a checked item from the list, the checkbox for that row and the one below get into a bad state. (hard to explain precisely, better to try it out for yourself)
This is most likely a pooling issue, but since I don't have globally unique IDs for these todo items, I can't rely on using a
key
. Besides, a simple example like this shouldn't require a more advanced feature like that imo.The text was updated successfully, but these errors were encountered: