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 f144ba5 commit 20719c5Copy full SHA for 20719c5
1 file changed
src/components/SelectPrompt.tsx
@@ -37,8 +37,15 @@ export function SelectPromptHint({
37
escapeLabel = 'cancel',
38
}: SelectPromptHintProps) {
39
return (
40
- <Text dimColor>
41
- {message} (↑↓ + Enter to confirm, Esc to {escapeLabel})
42
- </Text>
+ // Select option (↑↓ + Enter to confirm, Esc to cancel)
+ <Box flexDirection="row">
+ <Text dimColor>{message} (</Text>
43
+ <Text bold>↑↓</Text>
44
+ <Text dimColor> + </Text>
45
+ <Text bold>Enter</Text>
46
+ <Text dimColor> to confirm, </Text>
47
+ <Text bold>Esc</Text>
48
+ <Text dimColor> to {escapeLabel})</Text>
49
+ </Box>
50
);
51
}
0 commit comments