mirror of https://github.com/sveltejs/svelte
fix: async `class:` + spread attributes were compiled into sync server-side code (#16834)
parent
c75e862677
commit
24944e61f5
@ -0,0 +1,5 @@
|
|||||||
|
---
|
||||||
|
'svelte': patch
|
||||||
|
---
|
||||||
|
|
||||||
|
fix: async `class:` + spread attributes were compiled into sync server-side code
|
@ -0,0 +1 @@
|
|||||||
|
<!--[--><div class="test"></div><div style="color: green;"></div><!--]-->
|
@ -0,0 +1,2 @@
|
|||||||
|
<div class:test={await true} {...{}}></div>
|
||||||
|
<div style:color={await "green"} {...{}}></div>
|
Loading…
Reference in new issue