diff options
| author | Dax Raad <[email protected]> | 2026-03-03 15:25:11 -0500 |
|---|---|---|
| committer | Dax Raad <[email protected]> | 2026-03-03 15:25:11 -0500 |
| commit | c4ffd93caa864854602f200c5d894fb83bd259ca (patch) | |
| tree | 89ffb32f374d009728ab6935b9621b2eb25c413b | |
| parent | c78e7e1a286968369b6521f4d2a3d78d35659b7e (diff) | |
| download | opencode-c4ffd93caa864854602f200c5d894fb83bd259ca.tar.gz opencode-c4ffd93caa864854602f200c5d894fb83bd259ca.zip | |
tui: replace curved arrow with straight arrow for better terminal compatibility
| -rw-r--r-- | packages/opencode/src/cli/cmd/tui/routes/session/index.tsx | 4 |
1 files changed, 2 insertions, 2 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 26b263195..e2747ad3b 100644 --- a/packages/opencode/src/cli/cmd/tui/routes/session/index.tsx +++ b/packages/opencode/src/cli/cmd/tui/routes/session/index.tsx @@ -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(`⤷ ${tools().length} toolcalls`) + if (current()) content.push(`↳ ${Locale.titlecase(current()!.tool)} ${(current()!.state as any).title}`) + else content.push(`↳ ${tools().length} toolcalls`) } if (props.part.state.status === "completed") { |
