tui: use cleaner └ character for task indicators

Replaces the ⤷ arrow with a cleaner └ character when displaying running tool calls in task output, improving visual clarity in the session interface.
pull/15887/head
Dax Raad 2026-03-03 14:12:27 -05:00
parent c27779e1b2
commit 37fdbe7fa6
1 changed files with 2 additions and 2 deletions

View File

@ -1979,8 +1979,8 @@ function Task(props: ToolProps<typeof TaskTool>) {
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...`)
if (current()) content.push(` ${Locale.titlecase(current()!.tool)} ${(current()!.state as any).title}`)
else content.push(` Running...`)
}
if (props.part.state.status === "completed") {