Skip to content

Commit 39e8232

Browse files
authored
Merge pull request #29 from navedqb/fix--5382
fix: incorrect inputmode
2 parents d7c25df + 1591065 commit 39e8232

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

components/lib/inputotp/InputOtp.vue

+1-1
Original file line numberDiff line numberDiff line change
@@ -188,7 +188,7 @@ export default {
188188
},
189189
computed: {
190190
inputMode() {
191-
return this.integerOnly ? 'number' : 'text';
191+
return this.integerOnly ? 'numeric' : 'text';
192192
},
193193
inputType() {
194194
return this.mask ? 'password' : 'text';

0 commit comments

Comments
 (0)