summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorN. Taylor Mullen <[email protected]>2025-07-12 20:58:00 -0700
committerGitHub <[email protected]>2025-07-13 03:58:00 +0000
commit09a3b7d5e18b345a5e89c766250014d80a1c5a08 (patch)
tree5b98b5c34193a4e9a4d20ad7d42506063cf87efd
parent26a79fec2509e40a9fa3e82428a3c7ed30dce4f5 (diff)
feat: Invert scroll arrow default in RadioButtonSelect (#4006)
-rw-r--r--packages/cli/src/ui/components/ThemeDialog.tsx2
-rw-r--r--packages/cli/src/ui/components/shared/RadioButtonSelect.tsx2
2 files changed, 2 insertions, 2 deletions
diff --git a/packages/cli/src/ui/components/ThemeDialog.tsx b/packages/cli/src/ui/components/ThemeDialog.tsx
index e6c09225..0ca176cb 100644
--- a/packages/cli/src/ui/components/ThemeDialog.tsx
+++ b/packages/cli/src/ui/components/ThemeDialog.tsx
@@ -203,6 +203,7 @@ export function ThemeDialog({
onHighlight={onHighlight}
isFocused={currenFocusedSection === 'theme'}
maxItemsToShow={8}
+ showScrollArrows={true}
/>
{/* Scope Selection */}
@@ -217,7 +218,6 @@ export function ThemeDialog({
onSelect={handleScopeSelect}
onHighlight={handleScopeHighlight}
isFocused={currenFocusedSection === 'scope'}
- showScrollArrows={false}
/>
</Box>
)}
diff --git a/packages/cli/src/ui/components/shared/RadioButtonSelect.tsx b/packages/cli/src/ui/components/shared/RadioButtonSelect.tsx
index c3829bb4..499c136a 100644
--- a/packages/cli/src/ui/components/shared/RadioButtonSelect.tsx
+++ b/packages/cli/src/ui/components/shared/RadioButtonSelect.tsx
@@ -53,7 +53,7 @@ export function RadioButtonSelect<T>({
onSelect,
onHighlight,
isFocused,
- showScrollArrows = true,
+ showScrollArrows = false,
maxItemsToShow = 10,
}: RadioButtonSelectProps<T>): React.JSX.Element {
const [activeIndex, setActiveIndex] = useState(initialIndex);