Skip to content

Commit

Permalink
Fixed #1570 - Dropdown onkeydown item search
Browse files Browse the repository at this point in the history
  • Loading branch information
tugcekucukoglu committed Sep 21, 2021
1 parent b323225 commit 50342e4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/dropdown/Dropdown.vue
Original file line number Diff line number Diff line change
Expand Up @@ -395,7 +395,7 @@ export default {
clearTimeout(this.searchTimeout);
}
const char = String.fromCharCode(event.keyCode);
const char = event.key;
this.previousSearchChar = this.currentSearchChar;
this.currentSearchChar = char;
Expand Down

0 comments on commit 50342e4

Please sign in to comment.