Fixed #1390 - Dropdown onkeydown item search not working properly

pull/1478/head
mertsincan 2021-08-26 11:11:11 +03:00
parent 730503bea7
commit 0f82cd9215
1 changed files with 1 additions and 1 deletions

View File

@ -534,7 +534,7 @@ export default {
clearTimeout(this.searchTimeout);
}
const char = String.fromCharCode(event.keyCode);
const char = event.key;
this.previousSearchChar = this.currentSearchChar;
this.currentSearchChar = char;