We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3be210d commit c0ef443Copy full SHA for c0ef443
packages/core/src/prompts/select.ts
@@ -33,6 +33,7 @@ export default class SelectPrompt<T extends { value: any }> extends Prompt {
33
case 'down':
34
case 'right':
35
this.cursor = this.cursor === this.options.length - 1 ? 0 : this.cursor + 1;
36
+ break;
37
}
38
this.changeValue();
39
})
0 commit comments