fix(tui): space background shell status
This commit is contained in:
parent
4df54601df
commit
746f941b40
1 changed files with 3 additions and 1 deletions
|
|
@ -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()}>
|
<Show when={isRunning()}>
|
||||||
<Spinner color={color()} />
|
<Spinner color={color()} />
|
||||||
|
<text> </text>
|
||||||
</Show>
|
</Show>
|
||||||
<text flexShrink={1} wrapMode="none" truncate fg={theme.text}>
|
<text flexShrink={1} wrapMode="none" truncate fg={theme.text}>
|
||||||
{input()}
|
{input()}
|
||||||
</text>
|
</text>
|
||||||
<Show when={shellID()}>
|
<Show when={shellID()}>
|
||||||
|
<text> </text>
|
||||||
<StatusBadge>Background</StatusBadge>
|
<StatusBadge>Background</StatusBadge>
|
||||||
</Show>
|
</Show>
|
||||||
</box>
|
</box>
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue