diff --git a/components/lib/inputotp/InputOtp.vue b/components/lib/inputotp/InputOtp.vue index cea4ace71..0ad950811 100755 --- a/components/lib/inputotp/InputOtp.vue +++ b/components/lib/inputotp/InputOtp.vue @@ -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);