Skip to content

Commit

Permalink
fix(VSelect): remove multiple check for keyboard lookup (#20475)
Browse files Browse the repository at this point in the history
fixes #20358
  • Loading branch information
vikash8813 authored Jan 24, 2025
1 parent bcce042 commit ba143c1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/vuetify/src/components/VSelect/VSelect.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -238,7 +238,7 @@ export const VSelect = genericComponent<new <
// html select hotkeys
const KEYBOARD_LOOKUP_THRESHOLD = 1000 // milliseconds

if (props.multiple || !checkPrintable(e)) return
if (!checkPrintable(e)) return

const now = performance.now()
if (now - keyboardLookupLastTime > KEYBOARD_LOOKUP_THRESHOLD) {
Expand Down

0 comments on commit ba143c1

Please sign in to comment.