From dc2c9c7673dc16bf7a1f61a728b4412ea5b69536 Mon Sep 17 00:00:00 2001 From: Dax Raad Date: Tue, 3 Mar 2026 15:06:07 -0500 Subject: [PATCH] tui: show pending toolcall count instead of generic 'Running...' message --- packages/opencode/src/cli/cmd/tui/routes/session/index.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/opencode/src/cli/cmd/tui/routes/session/index.tsx b/packages/opencode/src/cli/cmd/tui/routes/session/index.tsx index e12b026484..26b2631957 100644 --- a/packages/opencode/src/cli/cmd/tui/routes/session/index.tsx +++ b/packages/opencode/src/cli/cmd/tui/routes/session/index.tsx @@ -1980,7 +1980,7 @@ function Task(props: ToolProps) { if (isRunning() && tools().length > 0) { // content[0] += ` · ${tools().length} toolcalls` if (current()) content.push(`⤷ ${Locale.titlecase(current()!.tool)} ${(current()!.state as any).title}`) - else content.push(`⤷ Running...`) + else content.push(`⤷ ${tools().length} toolcalls`) } if (props.part.state.status === "completed") {