Add numbers to selection list (#4320)

This commit is contained in:
Miguel Solorio 2025-07-17 15:51:42 -07:00 committed by GitHub
parent 6aac93ee07
commit 5b7bf74d66
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
5 changed files with 255 additions and 16 deletions

View file

@ -204,6 +204,7 @@ export function ThemeDialog({
isFocused={currenFocusedSection === 'theme'}
maxItemsToShow={8}
showScrollArrows={true}
showNumbers={currenFocusedSection === 'theme'}
/>
{/* Scope Selection */}
@ -218,6 +219,7 @@ export function ThemeDialog({
onSelect={handleScopeSelect}
onHighlight={handleScopeHighlight}
isFocused={currenFocusedSection === 'scope'}
showNumbers={currenFocusedSection === 'scope'}
/>
</Box>
)}