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
parent
c27779e1b2
commit
37fdbe7fa6
|
|
@ -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") {
|
||||
|
|
|
|||
Loading…
Reference in New Issue