From 281499166bcc74a451799178b52490efab53e6b5 Mon Sep 17 00:00:00 2001 From: Thomas von Dein Date: Fri, 17 Jul 2026 10:08:39 +0200 Subject: [PATCH] fix header count on task ls --- pkg/es/task.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/es/task.go b/pkg/es/task.go index b3ffe11..83297c7 100644 --- a/pkg/es/task.go +++ b/pkg/es/task.go @@ -36,7 +36,7 @@ func TaskList(conf *cfg.Config) error { slog.Debug("res", "tasks", res) - table := printer.NewTable(conf, 8, len(res)) + table := printer.NewTable(conf, 6, len(res)) table.Addheaders("task id", "action", "start time", "run time", "node", "type") for idx, task := range res {