🚧 Remove unnecessary whitespace
This commit is contained in:
parent
544b56af07
commit
b6b7d9687b
2 changed files with 2 additions and 2 deletions
|
|
@ -141,7 +141,7 @@ impl MixedComponents {
|
||||||
components.sort_by_key(|c| c.weight());
|
components.sort_by_key(|c| c.weight());
|
||||||
html! {
|
html! {
|
||||||
@for c in components.iter() {
|
@for c in components.iter() {
|
||||||
" " (c.render(cx)) " "
|
(c.render(cx))
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -134,7 +134,7 @@ impl<C: ComponentTrait + Default> TypedComponents<C> {
|
||||||
components.sort_by_key(|c| c.weight());
|
components.sort_by_key(|c| c.weight());
|
||||||
html! {
|
html! {
|
||||||
@for c in components.iter() {
|
@for c in components.iter() {
|
||||||
" " (c.render(cx)) " "
|
(c.render(cx))
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue