Outline: improve code formatting

This commit is contained in:
Aaron Fenyes 2024-09-13 00:43:19 -07:00
parent e6d1e0b865
commit 0c2869d3f3

View File

@ -50,9 +50,10 @@ pub fn App() -> View {
list=elements_sorted, list=elements_sorted,
view=|elt| { view=|elt| {
let label = elt.label.clone(); let label = elt.label.clone();
let rep_components = elt.rep.iter().map( let rep_components = elt.rep.iter().map(|u| {
|u| View::from(div().children(u.to_string().replace("-", "\u{2212}"))) let u_coord = u.to_string().replace("-", "\u{2212}");
).collect::<Vec<_>>(); View::from(div().children(u_coord))
}).collect::<Vec<_>>();
view! { view! {
li { li {
div(class="elt-label") { (label) } div(class="elt-label") { (label) }