diff options
| author | Dax Raad <[email protected]> | 2025-11-24 22:00:44 -0500 |
|---|---|---|
| committer | Dax Raad <[email protected]> | 2025-11-24 22:00:44 -0500 |
| commit | 6d630901b6d8804ab2bd9429d7fb664c7d18106c (patch) | |
| tree | 95610c9acb477bfcc366f34cd2cf7c6408d3b4c5 | |
| parent | 320622fc2754216741d745b296fb29b2155b43e6 (diff) | |
| download | opencode-6d630901b6d8804ab2bd9429d7fb664c7d18106c.tar.gz opencode-6d630901b6d8804ab2bd9429d7fb664c7d18106c.zip | |
tui: use standard middle dot separator 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 b049a153f..dc3d17a8a 100644 --- a/packages/opencode/src/cli/cmd/tui/routes/session/index.tsx +++ b/packages/opencode/src/cli/cmd/tui/routes/session/index.tsx @@ -1049,9 +1049,9 @@ function AssistantMessage(props: { message: AssistantMessage; parts: Part[]; las <text marginTop={1}> <span style={{ fg: local.agent.color(props.message.mode) }}>▣ </span>{" "} <span style={{ fg: theme.text }}>{Locale.titlecase(props.message.mode)}</span> - <span style={{ fg: theme.textMuted }}> ⬝ {props.message.modelID}</span> + <span style={{ fg: theme.textMuted }}> · {props.message.modelID}</span> <Show when={duration()}> - <span style={{ fg: theme.textMuted }}> ⬝ {Locale.duration(duration())}</span> + <span style={{ fg: theme.textMuted }}> · {Locale.duration(duration())}</span> </Show> </text> </box> |
