mirror of
https://github.com/leptos-rs/leptos
synced 2024-11-10 06:44:17 +00:00
parent
27765b417c
commit
96e1fd0fb8
1 changed files with 6 additions and 0 deletions
|
@ -103,6 +103,12 @@ fn is_inert_element(orig_node: &Node<impl CustomNode>) -> bool {
|
||||||
if el.attributes().is_empty() && el.children.is_empty() {
|
if el.attributes().is_empty() && el.children.is_empty() {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// also doesn't work if the top-level element is an SVG/MathML element
|
||||||
|
let el_name = el.name().to_string();
|
||||||
|
if is_svg_element(&el_name) || is_math_ml_element(&el_name) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
_ => return false,
|
_ => return false,
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue