diff --git a/utils/table_printer.go b/utils/table_printer.go index 9a40cdbbc..80af79db1 100644 --- a/utils/table_printer.go +++ b/utils/table_printer.go @@ -204,7 +204,7 @@ func (t *ttyTablePrinter) calculateColumnWidths(delimSize int) []int { } if max := maxColWidths[col]; max < perColumn { colWidths[col] = max - } else { + } else if perColumn > 0 { colWidths[col] = perColumn } }