Skip to content

Commit

Permalink
Merge pull request #5456 from melloware/patch-1
Browse files Browse the repository at this point in the history
Fix #3928: InputNumber allow cut and paste
  • Loading branch information
tugcekucukoglu committed Mar 22, 2024
2 parents 02f1e50 + 1d7ed15 commit 0d4f5f2
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) {
if (event.shiftKey || event.altKey || event.ctrlKey || event.metaKey) {
this.isSpecialChar = true;
return;
Expand Down

0 comments on commit 0d4f5f2

Please sign in to comment.