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
Via #721 — REPL. (An aside — there's a weird 'Cannot set read-only property' error happening in the REPL... currently only reproducible if you download it. Weird.)
The observer created in the Top.html component's oncreate hook causes everything to be updated while an update is already in progress, which is a problem. Not sure quite why it's resulting in that behaviour (list items being dropped) though.
I daresay this is one of the cases where two-way binding is dangerous. Svelte should still be able to handle it though.
Via #721 — REPL. (An aside — there's a weird 'Cannot set read-only property' error happening in the REPL... currently only reproducible if you download it. Weird.)
The observer created in the
Top.html
component'soncreate
hook causes everything to be updated while an update is already in progress, which is a problem. Not sure quite why it's resulting in that behaviour (list items being dropped) though.I daresay this is one of the cases where two-way binding is dangerous. Svelte should still be able to handle it though.
@TehShrike one workaround is to change this...
...to this:
The text was updated successfully, but these errors were encountered: