From 079637eed0c5e1b4820a7e1d4e581b41434bb041 Mon Sep 17 00:00:00 2001 From: Ross Date: Sun, 8 Mar 2026 18:53:40 -0700 Subject: [PATCH] increase id column so full id visible --- src/commands/benchmark-job/list.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/commands/benchmark-job/list.ts b/src/commands/benchmark-job/list.ts index f0a8d233..0beba1da 100644 --- a/src/commands/benchmark-job/list.ts +++ b/src/commands/benchmark-job/list.ts @@ -106,7 +106,7 @@ function colorState(state: string): string { // --- Table printing --- // Fixed column widths (excluding NAME which is dynamic) -const COL_ID = 16; +const COL_ID = 30; const COL_STARTED = 10; const COL_STATUS = 14; const COL_DONE = 9;