Skip to content

Commit a718622

Browse files
committed
tui: prevent footer from shrinking when terminal is resized
1 parent 4e83107 commit a718622

File tree

1 file changed

+1
-1
lines changed
  • packages/opencode/src/cli/cmd/tui/routes/session

1 file changed

+1
-1
lines changed

packages/opencode/src/cli/cmd/tui/routes/session/footer.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ export function Footer() {
1111
const lsp = createMemo(() => Object.keys(sync.data.lsp))
1212
const directory = useDirectory()
1313
return (
14-
<box flexDirection="row" justifyContent="space-between" gap={1}>
14+
<box flexDirection="row" justifyContent="space-between" gap={1} flexShrink={0}>
1515
<text fg={theme.textMuted}>{directory()}</text>
1616
<box gap={2} flexDirection="row" flexShrink={0}>
1717
<text fg={theme.text}>

0 commit comments

Comments
 (0)