Fixed #1390 - Dropdown onkeydown item search not working properly
parent
730503bea7
commit
0f82cd9215
|
@ -534,7 +534,7 @@ export default {
|
||||||
clearTimeout(this.searchTimeout);
|
clearTimeout(this.searchTimeout);
|
||||||
}
|
}
|
||||||
|
|
||||||
const char = String.fromCharCode(event.keyCode);
|
const char = event.key;
|
||||||
this.previousSearchChar = this.currentSearchChar;
|
this.previousSearchChar = this.currentSearchChar;
|
||||||
this.currentSearchChar = char;
|
this.currentSearchChar = char;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue