We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8105f18 commit 225b72cCopy full SHA for 225b72c
packages/opencode/src/cli/cmd/tui/ui/dialog-select.tsx
@@ -144,7 +144,7 @@ export function DialogSelect<T>(props: DialogSelectProps<T>) {
144
let next = store.selected + direction
145
if (next < 0) next = flat().length - 1
146
if (next >= flat().length) next = 0
147
- moveTo(next)
+ moveTo(next, true)
148
}
149
150
function moveTo(next: number, center = false) {
0 commit comments