diff options
| author | Rohan Godha <[email protected]> | 2026-01-04 13:29:44 -0600 |
|---|---|---|
| committer | GitHub <[email protected]> | 2026-01-04 13:29:44 -0600 |
| commit | 88c306efd297ff862ea425586a55f6d357817d4e (patch) | |
| tree | f961d85c15382bdd2ca802e434247e87096c971d | |
| parent | 554572bc39d2ad52d1f092ef16675f95a0ceda6b (diff) | |
| download | opencode-88c306efd297ff862ea425586a55f6d357817d4e.tar.gz opencode-88c306efd297ff862ea425586a55f6d357817d4e.zip | |
fix: prevent session list rows from wrapping to 2 lines (#6812)
| -rw-r--r-- | packages/opencode/src/cli/cmd/tui/ui/dialog-select.tsx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/opencode/src/cli/cmd/tui/ui/dialog-select.tsx b/packages/opencode/src/cli/cmd/tui/ui/dialog-select.tsx index a89223d49..f2f2927c0 100644 --- a/packages/opencode/src/cli/cmd/tui/ui/dialog-select.tsx +++ b/packages/opencode/src/cli/cmd/tui/ui/dialog-select.tsx @@ -314,12 +314,12 @@ function Option(props: { return ( <> <Show when={props.current}> - <text flexShrink={0} fg={props.active ? fg : props.current ? theme.primary : theme.text} marginRight={0.5}> + <text flexShrink={0} fg={props.active ? fg : props.current ? theme.primary : theme.text} marginRight={0}> ● </text> </Show> <Show when={!props.current && props.gutter}> - <box flexShrink={0} marginRight={0.5}> + <box flexShrink={0} marginRight={0}> {props.gutter} </box> </Show> |
