Merge pull request #5385 from qburst/fix--5382

fix: incorrect inputmode
This commit is contained in:
Tuğçe Küçükoğlu 2024-03-13 14:38:28 +03:00 committed by GitHub
commit 0a27fde29e
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -188,7 +188,7 @@ export default {
},
computed: {
inputMode() {
return this.integerOnly ? 'number' : 'text';
return this.integerOnly ? 'numeric' : 'text';
},
inputType() {
return this.mask ? 'password' : 'text';