Skip to content

Commit 1f98326

Browse files
committed
fix(tui): preserve background notification icon
1 parent 5d45eea commit 1f98326

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

packages/tui/src/routes/session/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1340,7 +1340,7 @@ function SessionNoticeMessageV2(props: { message: SessionMessageInfo }) {
13401340
if (state() === "error") return "failed"
13411341
return state() ?? "finished"
13421342
}
1343-
const heading = () => `${state() === "completed" ? "" : "!"} ${actor()} ${status()}`
1343+
const heading = () => `${state() === "completed" ? "" : "!"} ${actor()} ${status()}`
13441344
const suffix = () =>
13451345
Locale.truncateWidth(` · ${description()}`, Math.max(0, ctx.width - 3 - Bun.stringWidth(heading())))
13461346
const color = () => {

0 commit comments

Comments
 (0)