We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
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
Love the await block, but ran into an issue with cases where an anchor isn't needed (which I think could be relatively often).
Example: https://svelte.technology/repl?version=1.44.1&gist=2280c071cccd0dbc9cf0b873540c2c4f
I think the following line needs a guard for null anchor value (needsAnchor = false), but I'm not sure what it should look like:
null
needsAnchor = false
svelte/src/generators/dom/visitors/AwaitBlock.ts
Line 70 in 7e40ee2
The text was updated successfully, but these errors were encountered:
mount await blocks with siblings (#974), and unmount correctly (#975)
978e628
9ad4de7
This and #975 are fixed in 1.44.2. Thanks!
Sorry, something went wrong.
No branches or pull requests
Love the await block, but ran into an issue with cases where an anchor isn't needed (which I think could be relatively often).
Example: https://svelte.technology/repl?version=1.44.1&gist=2280c071cccd0dbc9cf0b873540c2c4f
I think the following line needs a guard for
null
anchor value (needsAnchor = false
), but I'm not sure what it should look like:svelte/src/generators/dom/visitors/AwaitBlock.ts
Line 70 in 7e40ee2
The text was updated successfully, but these errors were encountered: