Skip to content

Commit 4a84cfc

Browse files
committed
style(tui): move compartment count to collapsed Status row
Historian row now shows just the label + idle/comparting state; the compartment count moves into Status as the leading 'C:' token, so the collapsed summary reads 'Status C:684 Q:160 N:25'.
1 parent f43f261 commit 4a84cfc

1 file changed

Lines changed: 2 additions & 4 deletions

File tree

packages/plugin/src/tui/slots/sidebar-content.tsx

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -653,9 +653,7 @@ const SidebarContent = (props: {
653653
bold/accent — they're a glanceable summary, so the label
654654
and value share the muted tone (matches Memories row). */}
655655
<box width="100%" flexDirection="row" justifyContent="space-between">
656-
<text fg={props.theme.textMuted}>
657-
Historian (C:{s()?.compartmentCount ?? 0})
658-
</text>
656+
<text fg={props.theme.textMuted}>Historian</text>
659657
{s()?.historianRunning ? (
660658
<text fg={props.theme.warning}>comparting ⟳</text>
661659
) : (
@@ -673,7 +671,7 @@ const SidebarContent = (props: {
673671
<box width="100%" flexDirection="row" justifyContent="space-between">
674672
<text fg={props.theme.textMuted}>Status</text>
675673
<text fg={props.theme.textMuted}>
676-
Q:{s()?.pendingOpsCount ?? 0} N:{s()?.sessionNoteCount ?? 0}
674+
C:{s()?.compartmentCount ?? 0} Q:{s()?.pendingOpsCount ?? 0} N:{s()?.sessionNoteCount ?? 0}
677675
</text>
678676
</box>
679677
{s()?.recompProgress && (

0 commit comments

Comments
 (0)