Skip to main content

max / quasi

drop three needless borrows in the quasi-tui table fixture
Author: Max Johnson <me@maxj.phd> · 2026-08-21 01:34 UTC
Signed with PGP, not checked
Commit: 6d05a050a09d19fa0d16d0a8d2c67cc8840fc216
Parent: ca1ca27
2 files changed, +7 insertions, -7 deletions
M Cargo.lock +4 -4
@@ -6191,6 +6191,10 @@
6191 6191 name = "quasi-type"
6192 6192 version = "0.1.0"
6193 6193
6194 + [[patch.unused]]
6195 + name = "makeover-build"
6196 + version = "0.47.0"
6197 +
6194 6198 [[patch.unused]]
6195 6199 name = "kberg"
6196 6200 version = "0.1.0"
@@ -6207,10 +6211,6 @@
6207 6211 name = "tagtree"
6208 6212 version = "0.4.0"
6209 6213
6210 - [[patch.unused]]
6211 - name = "makeover-build"
6212 - version = "0.47.0"
6213 -
6214 6214 [[patch.unused]]
6215 6215 name = "synckit-client"
6216 6216 version = "0.8.0"
@@ -2988,11 +2988,11 @@
2988 2988 Cells::new([
2989 2989 Cell::new(name),
2990 2990 Cell::acts([
2991 - Act::new("Edit", Action::post(&format!("/files/{id}/edit"))),
2992 - Act::new("Remove", Action::post(&format!("/files/{id}/remove"))),
2991 + Act::new("Edit", Action::post(format!("/files/{id}/edit"))),
2992 + Act::new("Remove", Action::post(format!("/files/{id}/remove"))),
2993 2993 ]),
2994 2994 ])
2995 - .activate(Action::get(&format!("/files/{id}")))
2995 + .activate(Action::get(format!("/files/{id}")))
2996 2996 };
2997 2997 Screen::sidebar_content("Files").with(Slot::new("main", RegionKind::Pane).with(Node::Table {
2998 2998 columns: vec![Column::new("name"), Column::new("")],