chore: typographical improvements per review
All checks were successful
/ test (pull_request) Successful in 3m45s

This commit is contained in:
Glen Whitney 2025-10-06 16:31:02 -06:00
parent ecbbe2068c
commit 46ffd6c285
3 changed files with 11 additions and 10 deletions

View file

@ -123,10 +123,11 @@ impl OutlineItem for HalfCurvatureRegulator {
impl OutlineItem for PointCoordinateRegulator {
fn outline_item(self: Rc<Self>, _element: &Rc<dyn Element>) -> View {
let name = format!("{} coordinate", Axis::NAME[self.axis as usize]);
view! {
li(class = "regulator") {
div(class = "regulator-label") { (Axis::NAME[self.axis as usize]) }
div(class = "regulator-type") { "Coordinate" }
div(class = "regulator-label") // for spacing
div(class = "regulator-type") { (name) }
RegulatorInput(regulator = self)
div(class = "status")
}