fix(tui): bump compact UPTIME column 7→8 to fit 100.0% with cell padding
CI / test (pull_request) Successful in 2m41s
CI / lint (pull_request) Failing after 1m1s
CI / vulncheck (pull_request) Successful in 1m1s

This commit is contained in:
2026-05-28 16:04:51 -04:00
parent fa96c5fd3f
commit 1c29758ca2
+2 -2
View File
@@ -355,8 +355,8 @@ func (m Model) computeLayout() tableLayout {
} else {
// # 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}
fixed = 4 + 8 + 8 + 7 + 7 + 5 + 5
widths = []int{4, 0, 8, 8, 7, 8, 0, 5, 5}
fixed = 4 + 8 + 8 + 7 + 8 + 5 + 5
}
numCols := len(headers)