Skip to content

Commit

Permalink
Merge pull request #5560 from melloware/patch-2
Browse files Browse the repository at this point in the history
Fix #5508: InputNumber allow AZERTY keyboards
  • Loading branch information
tugcekucukoglu authored Apr 19, 2024
2 parents 6615f31 + 84bbb33 commit 5208539
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/lib/inputnumber/InputNumber.vue
Original file line number Diff line number Diff line change
Expand Up @@ -376,7 +376,7 @@ export default {
return;
}
if (event.shiftKey || event.altKey || event.ctrlKey || event.metaKey) {
if (event.altKey || event.ctrlKey || event.metaKey) {
this.isSpecialChar = true;
return;
Expand Down

0 comments on commit 5208539

Please sign in to comment.