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
svelte-cli version 1.0.2
consider the following template:
{{#each samples as sample}} {{sample}}<br> {{/each}}
compiled via the svelte-cli and invoked with the following code
<!doctype html> <html> <head> <title>My first Svelte app</title> </head> <body> <main></main> <script src='helloWorld.js'></script> <script> var app = new helloWorld({ target: document.querySelector( 'main' ), data: { samples: ['foo', 'bar', 'bax', 'baz'] } }); app.set({samples: ['foo', 'baz']}); </script> </body> </html>
expected result:
foo baz
actual result:
foo baz baxbaz
The text was updated successfully, but these errors were encountered:
remove text nodes when removing iterations of each block (#62)
be8a564
Merge pull request #72 from sveltejs/gh-62
14e4684
remove text nodes when removing iterations of each block
Thanks – fixed in 1.0.4
Sorry, something went wrong.
lgtm!
Successfully merging a pull request may close this issue.
svelte-cli version 1.0.2
consider the following template:
compiled via the svelte-cli and invoked with the following code
expected result:
actual result:
The text was updated successfully, but these errors were encountered: