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 1c29758ca2 - Show all commits
+2 -2
View File
@@ -355,8 +355,8 @@ func (m Model) computeLayout() tableLayout {
} else { } else {
// # NAME TYPE STATUS LAT UP% HISTORY SSL RT // # NAME TYPE STATUS LAT UP% HISTORY SSL RT
headers = []string{"#", "NAME", "TYPE", "STATUS", "LAT", "UP%", "HISTORY", "SSL", "RT"} headers = []string{"#", "NAME", "TYPE", "STATUS", "LAT", "UP%", "HISTORY", "SSL", "RT"}
widths = []int{4, 0, 8, 8, 7, 7, 0, 5, 5} widths = []int{4, 0, 8, 8, 7, 8, 0, 5, 5}
fixed = 4 + 8 + 8 + 7 + 7 + 5 + 5 fixed = 4 + 8 + 8 + 7 + 8 + 5 + 5
} }
numCols := len(headers) numCols := len(headers)