fix(tui): set explicit NAME column width to match content truncation
CI / test (pull_request) Successful in 2m41s
CI / lint (pull_request) Successful in 1m11s
CI / vulncheck (pull_request) Successful in 56s

Was width=0 (auto) which let lipgloss over-allocate the column,
causing visible empty space between truncated names and TYPE column.
Now set to nameW explicitly so column width = truncation limit.
This commit is contained in:
2026-05-28 13:52:24 -04:00
parent c5477c7ef6
commit 2c78c60d08
+1 -1
View File
@@ -412,7 +412,7 @@ func (m Model) computeLayout() tableLayout {
for i, c := range cols { for i, c := range cols {
if i == 1 { if i == 1 {
headers[i] = "NAME" headers[i] = "NAME"
widths[i] = 0 widths[i] = nameW
continue continue
} }
if i == 6 { if i == 6 {