From 18c0a67ddc4ad5734ca4f9d39ec5492e8a4ce8a0 Mon Sep 17 00:00:00 2001 From: Satya Patel Date: Tue, 12 May 2026 12:21:02 -0700 Subject: [PATCH] feat(cli): show workspace id in `workspaces list` default table MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit `superset workspaces open` requires a UUID, but the default table omitted it — forcing users through `--json` to copy the id. Add ID as the trailing column, matching the convention used by `projects list`, `agents list`, and `hosts list`. --- packages/cli/src/commands/workspaces/list/command.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/cli/src/commands/workspaces/list/command.ts b/packages/cli/src/commands/workspaces/list/command.ts index 80f88c0c8e9..bd094dc4a74 100644 --- a/packages/cli/src/commands/workspaces/list/command.ts +++ b/packages/cli/src/commands/workspaces/list/command.ts @@ -18,8 +18,8 @@ export default command({ display: (data) => table( data as Record[], - ["name", "branch", "projectName", "hostName"], - ["NAME", "BRANCH", "PROJECT", "HOST"], + ["name", "branch", "projectName", "hostName", "id"], + ["NAME", "BRANCH", "PROJECT", "HOST", "ID"], 30, ), run: async ({ ctx, options }) => {