mirror of
https://github.com/anomalyco/opencode.git
synced 2026-07-23 09:53:34 +00:00
fix(tui): indent synthetic session notices
This commit is contained in:
parent
72ec09cf74
commit
1a06198954
1 changed files with 5 additions and 1 deletions
|
|
@ -1253,7 +1253,11 @@ function SessionNoticeMessageV2(props: { message: SessionMessage }) {
|
|||
if (props.message.type === "system" || props.message.type === "synthetic") return props.message.text
|
||||
return ""
|
||||
}
|
||||
return <text fg={theme.textMuted}>{text()}</text>
|
||||
return (
|
||||
<box paddingLeft={3}>
|
||||
<text fg={theme.textMuted}>{text()}</text>
|
||||
</box>
|
||||
)
|
||||
}
|
||||
|
||||
function SessionSkillMessage(props: { message: Extract<SessionMessage, { type: "skill" }> }) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue