mirror of
https://github.com/sst/opencode.git
synced 2025-12-23 10:11:41 +00:00
tui: improve task display in session view to show tool names and completion status
This commit is contained in:
parent
204a31b6bb
commit
9ca4b464ea
1 changed files with 1 additions and 1 deletions
|
|
@ -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>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue