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
It's very weird behavior!
When I use spread props, the attribute value is not rendering.
spread props
value
I did a REPL: https://svelte.dev/repl/73b2780bd1744b189564ffca010c2aec?version=3.22.2
Example (fragment in REPL):
<input type="radio" id="{name}_{idx}" {value} {...props} bind:group={$store[name]} />
Workaround to work:
<input type="radio" id="{name}_{idx}" {value} {...{...props, value}} bind:group={$store[name]} />
The text was updated successfully, but these errors were encountered:
Fix sveltejs#4803 by changing setAttributes to set value as well as _…
43ac9ae
…_value
👍
Sorry, something went wrong.
This is fixed in 3.22.3 - https://svelte.dev/repl/73b2780bd1744b189564ffca010c2aec?version=3.22.3
Successfully merging a pull request may close this issue.
It's very weird behavior!
When I use
spread props
, the attributevalue
is not rendering.I did a REPL:
https://svelte.dev/repl/73b2780bd1744b189564ffca010c2aec?version=3.22.2
Example (fragment in REPL):
Workaround to work:
The text was updated successfully, but these errors were encountered: