fix stringification of attributes in ssr

pull/7738/head
Rich Harris 8 years ago
parent 800af889a9
commit 191c9ee5bd

@ -65,7 +65,7 @@ export default function visitElement(
if (attribute.type !== 'Attribute') return;
if (attribute.name === 'value' && node.name === 'textarea') {
textareaContents = stringifyAttributeValue(block, attribute.value);
textareaContents = stringifyAttributeValue(block, attribute.chunks);
} else if (attribute.isTrue) {
openingTag += ` ${attribute.name}`;
} else if (

Loading…
Cancel
Save