mirror of https://github.com/sveltejs/svelte
fix: check boundary `pending` attribute at runtime on server (#16855)
* fix: check boundary `pending` attribute at runtime on server * fix --------- Co-authored-by: Rich Harris <rich.harris@vercel.com>pull/16877/head
parent
4f653ddcea
commit
499973454a
@ -0,0 +1,5 @@
|
||||
---
|
||||
'svelte': patch
|
||||
---
|
||||
|
||||
fix: check boundary `pending` attribute at runtime on server
|
@ -0,0 +1 @@
|
||||
<!--[--><!--[--><!---->awaited<!--]--><!--]-->
|
@ -0,0 +1,6 @@
|
||||
<script>
|
||||
let pending = null;
|
||||
</script>
|
||||
<svelte:boundary {pending}>
|
||||
{await 'awaited'}
|
||||
</svelte:boundary>
|
Loading…
Reference in new issue