summaryrefslogtreecommitdiff
path: root/packages/cli/src/ui/components/ThemeDialog.tsx
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 /packages/cli/src/ui/components/ThemeDialog.tsx
parent26a79fec2509e40a9fa3e82428a3c7ed30dce4f5 (diff)
feat: Invert scroll arrow default in RadioButtonSelect (#4006)
Diffstat (limited to 'packages/cli/src/ui/components/ThemeDialog.tsx')
-rw-r--r--packages/cli/src/ui/components/ThemeDialog.tsx2
1 files changed, 1 insertions, 1 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>
)}