fixes paste function issue in integerOnly

pull/5798/head^2
navedqb 2024-05-29 10:30:44 +05:30 committed by GitHub
parent 53ea90bd44
commit 732a20b919
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 4 additions and 0 deletions

View File

@ -129,6 +129,10 @@ export default {
this.$emit('blur', event);
},
onKeyDown(event) {
if (event.ctrlKey || event.metaKey) {
return;
}
switch (event.code) {
case 'ArrowLeft':
this.moveToPrev(event);