diff --git a/lib/components/ms-input/MsCodeValidationInput.vue b/lib/components/ms-input/MsCodeValidationInput.vue index b8162ad..7b75741 100644 --- a/lib/components/ms-input/MsCodeValidationInput.vue +++ b/lib/components/ms-input/MsCodeValidationInput.vue @@ -108,7 +108,7 @@ async function checkCode(): Promise { } function onKeydown(event: KeyboardEvent): void { - if (!isDigits(event.key) && !event.ctrlKey) { + if (!isDigits(event.key) && !event.ctrlKey && !event.metaKey) { event.preventDefault(); } }