fix(tui): indent subagent empty state
This commit is contained in:
@@ -213,7 +213,7 @@ export function SubagentsTab(props: { sessionID: string }) {
|
|||||||
maxHeight={5}
|
maxHeight={5}
|
||||||
ref={(r: ScrollBoxRenderable) => (scroll = r)}
|
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()}>
|
<For each={entries()}>
|
||||||
{(entry, index) => {
|
{(entry, index) => {
|
||||||
const active = createMemo(() => index() === selected())
|
const active = createMemo(() => index() === selected())
|
||||||
|
|||||||
Reference in New Issue
Block a user