Compare commits

...

1 Commits

Author SHA1 Message Date
Greg Johnston
9713422682 fix: closing element names wrong for svg::, math::, and use_ (closes #1403) 2023-07-20 16:19:25 -04:00

View File

@@ -551,7 +551,7 @@ fn element_to_tokens_ssr(
}
template.push_str("</");
template.push_str(&node.name().to_string());
template.push_str(tag_name);
template.push('>');
}
}