Merge pull request #5456 from melloware/patch-1

Fix #3928: InputNumber allow cut and paste
pull/5467/head
Tuğçe Küçükoğlu 2024-03-22 12:10:25 +03:00 committed by GitHub
commit 0d4f5f28b9
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -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;