fix(tui): spacing

This commit is contained in:
Adam 2025-11-24 20:44:22 -06:00
parent fb8ef1f27b
commit 320622fc27
No known key found for this signature in database
GPG key ID: 9CB48779AF150E75

View file

@ -1047,11 +1047,11 @@ function AssistantMessage(props: { message: AssistantMessage; parts: Part[]; las
<Match when={props.last || final()}>
<box paddingLeft={3}>
<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: 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>
<Show when={duration()}>
<span style={{ fg: theme.textMuted }}> {Locale.duration(duration())}</span>
<span style={{ fg: theme.textMuted }}> {Locale.duration(duration())}</span>
</Show>
</text>
</box>