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

fix: incorrect inputmode
pull/5383/head^2
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
1 changed files with 1 additions and 1 deletions

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';