diff --git a/src/core/component/arc_mixed.rs b/src/core/component/arc_mixed.rs index 6ed978c6..f14bdaa9 100644 --- a/src/core/component/arc_mixed.rs +++ b/src/core/component/arc_mixed.rs @@ -141,7 +141,7 @@ impl MixedComponents { components.sort_by_key(|c| c.weight()); html! { @for c in components.iter() { - " " (c.render(cx)) " " + (c.render(cx)) } } } diff --git a/src/core/component/arc_typed.rs b/src/core/component/arc_typed.rs index 1b91ad5d..ccf99e90 100644 --- a/src/core/component/arc_typed.rs +++ b/src/core/component/arc_typed.rs @@ -134,7 +134,7 @@ impl TypedComponents { components.sort_by_key(|c| c.weight()); html! { @for c in components.iter() { - " " (c.render(cx)) " " + (c.render(cx)) } } }