diff --git a/cli/formatter/formatter.go b/cli/formatter/formatter.go index 0c32387f..ff6ea25c 100644 --- a/cli/formatter/formatter.go +++ b/cli/formatter/formatter.go @@ -39,6 +39,7 @@ func HumanDuration(timestamp int64) string { // CreateTable prepares a table layout for output. func CreateTable(columns []string) *tablewriter.Table { table := tablewriter.NewWriter(os.Stdout) + table.SetAutoWrapText(false) table.SetHeader(columns) return table }