From 159106539a28252c8515baa9f2ed921d246df0a6 Mon Sep 17 00:00:00 2001 From: navedqb <109583873+navedqb@users.noreply.github.com> Date: Thu, 7 Mar 2024 14:31:21 +0530 Subject: [PATCH] fix incorrect inputmode --- components/lib/inputotp/InputOtp.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/lib/inputotp/InputOtp.vue b/components/lib/inputotp/InputOtp.vue index 7a390d6df..f2f851bf0 100755 --- a/components/lib/inputotp/InputOtp.vue +++ b/components/lib/inputotp/InputOtp.vue @@ -188,7 +188,7 @@ export default { }, computed: { inputMode() { - return this.integerOnly ? 'number' : 'text'; + return this.integerOnly ? 'numeric' : 'text'; }, inputType() { return this.mask ? 'password' : 'text';