Skip to content

Commit

Permalink
Merge pull request #5385 from qburst/fix--5382
Browse files Browse the repository at this point in the history
fix: incorrect inputmode
  • Loading branch information
tugcekucukoglu authored Mar 13, 2024
2 parents 8696e67 + 39e8232 commit 0a27fde
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 0a27fde

Please sign in to comment.