chore(tui): visual polish — detail sections, column headers, alert detail #37

Merged
lerko merged 20 commits from chore/ux-polish into main 2026-05-28 20:40:29 +00:00
Showing only changes of commit d9dcd58b66 - Show all commits
+5 -5
View File
@@ -99,12 +99,12 @@ func (m Model) viewMaintTab() string {
cols := []colDef{ cols := []colDef{
{"#", "#", 4, 4, false}, {"#", "#", 4, 4, false},
{"TITLE", "TITLE", 12, 28, true}, {"TITLE", "TITLE", 10, 28, true},
{"TYPE", "TYPE", 13, 14, false}, {"TYPE", "TYPE", 13, 14, false},
{"MON", "MONITORS", 15, 22, false}, {"MON", "MONITORS", 10, 22, false},
{"STATUS", "STATUS", 11, 12, false}, {"ST", "STATUS", 8, 12, false},
{"START", "STARTED", 14, 16, false}, {"START", "STARTED", 8, 16, false},
{"ENDS", "ENDS", 14, 16, false}, {"ENDS", "ENDS", 8, 16, false},
} }
headers, widths := m.computeTableLayout(cols, 0) headers, widths := m.computeTableLayout(cols, 0)
titleW := widths[1] titleW := widths[1]