summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorDax Raad <[email protected]>2025-11-28 21:19:15 -0500
committerDax Raad <[email protected]>2025-11-28 21:19:15 -0500
commit9ca4b464ea70d956afde50e0657c8664728bd576 (patch)
treede8ac68d2031a89c6e7014586597205a56defef8
parent204a31b6bbad951e1e03d985c2edc62165062a4e (diff)
downloadopencode-9ca4b464ea70d956afde50e0657c8664728bd576.tar.gz
opencode-9ca4b464ea70d956afde50e0657c8664728bd576.zip
tui: improve task display in session view to show tool names and completion status
-rw-r--r--packages/opencode/src/cli/cmd/tui/routes/session/index.tsx2
1 files changed, 1 insertions, 1 deletions
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 fb0e07a86..b6e363c86 100644
--- a/packages/opencode/src/cli/cmd/tui/routes/session/index.tsx
+++ b/packages/opencode/src/cli/cmd/tui/routes/session/index.tsx
@@ -1408,7 +1408,7 @@ ToolRegistry.register<typeof TaskTool>({
<For each={props.metadata.summary ?? []}>
{(task) => (
<text style={{ fg: theme.textMuted }}>
- ∟ {task.tool} {task.state.status === "completed" ? task.state.title : ""}
+ ∟ {Locale.titlecase(task.tool)} {task.state.status === "completed" ? task.state.title : ""}
</text>
)}
</For>