From 71ce47ca37566be8dc390434df4cd01422298094 Mon Sep 17 00:00:00 2001 From: historia <[not public]> Date: Mon, 29 Jun 2026 04:41:40 -0400 Subject: fix: long fields truncated better in tables --- internal/ui/table.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'internal/ui') diff --git a/internal/ui/table.go b/internal/ui/table.go index 5061417..5ef2c99 100644 --- a/internal/ui/table.go +++ b/internal/ui/table.go @@ -83,11 +83,11 @@ func (t *Table) Render(unicode bool, maxWidth int) []string { colWidths[last] = budget if len(t.Columns) > last { - t.Columns[last] = color.TruncateVisible(t.Columns[last], budget) + t.Columns[last] = color.TruncateVisible(t.Columns[last], budget, unicode) } for i := range t.Rows { if len(t.Rows[i]) > last { - t.Rows[i][last] = color.TruncateVisible(t.Rows[i][last], budget) + t.Rows[i][last] = color.TruncateVisible(t.Rows[i][last], budget, unicode) } } } -- cgit v1.2.3