We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Describe the bug
This doesn't work:
{#each $items as item, index} <input bind:value={item.text}> {/each}
To Reproduce
https://svelte.dev/repl/358a3620fd6b4f159a90268a6b2035a4?version=3.9.1
Expected behavior
Editing the text input should update the store
Severity
Seems bad
Additional context
https://stackoverflow.com/questions/57626273/svelte-component-not-re-rendering-with-new-values-if-text-input-is-inside-an-eac
The text was updated successfully, but these errors were encountered:
As a workaround, this works:
<input bind:value={$items[index].text}>
Might help track down how to correct it.
Sorry, something went wrong.
Merge pull request #3534 from btk5h/gh-3455
fafb390
Fix store bindings in each blocks
Successfully merging a pull request may close this issue.
Describe the bug
This doesn't work:
To Reproduce
https://svelte.dev/repl/358a3620fd6b4f159a90268a6b2035a4?version=3.9.1
Expected behavior
Editing the text input should update the store
Severity
Seems bad
Additional context
https://stackoverflow.com/questions/57626273/svelte-component-not-re-rendering-with-new-values-if-text-input-is-inside-an-eac
The text was updated successfully, but these errors were encountered: