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
|
if (props.message.type === "system" || props.message.type === "synthetic") return props.message.text
|
||||||
return ""
|
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" }> }) {
|
function SessionSkillMessage(props: { message: Extract<SessionMessage, { type: "skill" }> }) {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue