fix(tui): indent subagent empty state
This commit is contained in:
parent
c65a7d50c1
commit
360d85a521
1 changed files with 1 additions and 1 deletions
|
|
@ -213,7 +213,7 @@ export function SubagentsTab(props: { sessionID: string }) {
|
|||
maxHeight={5}
|
||||
ref={(r: ScrollBoxRenderable) => (scroll = r)}
|
||||
>
|
||||
<Show when={entries().length > 0} fallback={<text fg={theme.textMuted}>No subagents</text>}>
|
||||
<Show when={entries().length > 0} fallback={<text fg={theme.textMuted}> No subagents</text>}>
|
||||
<For each={entries()}>
|
||||
{(entry, index) => {
|
||||
const active = createMemo(() => index() === selected())
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue