fix(tui): space background shell status

This commit is contained in:
Kit Langton
2026-07-14 19:13:50 +00:00
committed by 𝓛𝓲𝓽𝓽𝓵𝓮 𝓕𝓻𝓪𝓷𝓴
parent 4df54601df
commit 746f941b40
+3 -1
View File
@@ -2350,14 +2350,16 @@ function Shell(props: ToolProps) {
)
}
>
<box flexDirection="row" gap={1} minWidth={0} paddingRight={1}>
<box flexDirection="row" minWidth={0} paddingRight={1}>
<Show when={isRunning()}>
<Spinner color={color()} />
<text> </text>
</Show>
<text flexShrink={1} wrapMode="none" truncate fg={theme.text}>
{input()}
</text>
<Show when={shellID()}>
<text> </text>
<StatusBadge>Background</StatusBadge>
</Show>
</box>