Skip to content

Commit

Permalink
fix(useKeyboardListNavigation): ensure search query is case insensitive
Browse files Browse the repository at this point in the history
  • Loading branch information
LeBenLeBen committed Nov 20, 2022
1 parent 10fd49a commit adc488d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ export default function useKeyboardListNavigation(
searchIndex.value = selectedItemIndex;
}

query.value += character;
query.value += character.toLowerCase();

prepareToResetQuery();

Expand Down

0 comments on commit adc488d

Please sign in to comment.