Skip to content

Commit

Permalink
Merge pull request #29 from navedqb/fix--5382
Browse files Browse the repository at this point in the history
fix: incorrect inputmode
  • Loading branch information
navedqb authored Mar 7, 2024
2 parents d7c25df + 1591065 commit 39e8232
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/lib/inputotp/InputOtp.vue
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,7 @@ export default {
},
computed: {
inputMode() {
return this.integerOnly ? 'number' : 'text';
return this.integerOnly ? 'numeric' : 'text';
},
inputType() {
return this.mask ? 'password' : 'text';
Expand Down

0 comments on commit 39e8232

Please sign in to comment.