Skip to content

Commit 9106533

Browse files
committed
doh
1 parent 3afd814 commit 9106533

File tree

1 file changed

+1
-1
lines changed
  • packages/svelte/src/compiler/phases/3-transform/client/transform-template

1 file changed

+1
-1
lines changed

packages/svelte/src/compiler/phases/3-transform/client/transform-template/to-string.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ function stringify(node) {
2626
}
2727

2828
str += `>`;
29-
str += node.children.map(stringify);
29+
str += node.children.map(stringify).join('');
3030

3131
if (!is_void(node.name)) {
3232
str += `</${node.name}>`;

0 commit comments

Comments
 (0)