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
The code in core.py is designed to directly set checked and value as attributes on the value, not via DOM setAttribute. That's how it works with normal HTML elements:
However, I'm finding this does result in some bug with webcomponents that expect both to be set. So we should set both the .checked value and the .value itself, which shouldn't cause any issues.
The text was updated successfully, but these errors were encountered:
The code in core.py is designed to directly set checked and value as attributes on the value, not via DOM setAttribute. That's how it works with normal HTML elements:
However, I'm finding this does result in some bug with webcomponents that expect both to be set. So we should set both the
.checked
value and the.value
itself, which shouldn't cause any issues.The text was updated successfully, but these errors were encountered: