Compare commits

...

1 Commits
main ... 1403

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
1 changed files with 1 additions and 1 deletions

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('>');
}
}