mirror of https://github.com/sveltejs/svelte
Drop the boolean flag from add attribute for ssr to be more explicit. This fixes the issue of rendering a bound number 0, which was previously omitted.pull/4559/head
parent
b7366c42cd
commit
c35167d6a2
@ -1,3 +1,5 @@
|
|||||||
export default {
|
export default {
|
||||||
html: '<input type="text">'
|
html: '<input type="text">',
|
||||||
|
|
||||||
|
ssrHtml: '<input type="text" value="">'
|
||||||
};
|
};
|
Loading…
Reference in new issue