Merge pull request #6886 from betavs/hotfix/input-mask-update-model-value

fix(component): [input-mask] same value triggers update
pull/6893/head
Tuğçe Küçükoğlu 2024-11-29 13:42:56 +03:00 committed by GitHub
commit ea410e36a2
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 0 deletions

View File

@ -447,6 +447,7 @@ export default {
},
updateModelValue(value) {
if (this.currentVal === value) return;
const val = this.unmask ? this.getUnmaskedValue() : value;
this.currentVal = value;