Skip to content

Commit

Permalink
chore: change let to const
Browse files Browse the repository at this point in the history
  • Loading branch information
KumJungMin committed Sep 16, 2024
1 parent c50ae39 commit a31c0f2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/primevue/src/inputmask/InputMask.vue
Original file line number Diff line number Diff line change
Expand Up @@ -446,7 +446,7 @@ export default {
},
updateModelValue(value) {
let val = this.unmask ? this.getUnmaskedValue() : value;
const val = this.unmask ? this.getUnmaskedValue() : value;
this.currentVal = value;
Expand Down

0 comments on commit a31c0f2

Please sign in to comment.