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
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>
)}