From dd0945b9ca9abddd6bd0961a1402862df26cf27c Mon Sep 17 00:00:00 2001 From: Dax Raad Date: Sat, 6 Dec 2025 18:19:18 -0500 Subject: [PATCH] tui: add visual separator between username and timestamp for better readability --- packages/opencode/src/cli/cmd/tui/routes/session/index.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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 4b1deea29..4d1b50ccf 100644 --- a/packages/opencode/src/cli/cmd/tui/routes/session/index.tsx +++ b/packages/opencode/src/cli/cmd/tui/routes/session/index.tsx @@ -1065,11 +1065,12 @@ function UserMessage(props: { - {ctx.usernameVisible() ? `${sync.data.config.username ?? "You"} ` : "You"}{" "} + {ctx.usernameVisible() ? `${sync.data.config.username ?? "You"}` : "You"} + {ctx.usernameVisible() ? " ยท " : " "} {ctx.showTimestamps() ? Locale.todayTimeOrDateTime(props.message.time.created) : Locale.time(props.message.time.created)}