Skip to content

Commit

Permalink
Merge branch 'master' of https://github.com/primefaces/primevue
Browse files Browse the repository at this point in the history
  • Loading branch information
cagataycivici committed Feb 23, 2024
2 parents ecfc277 + 41d3250 commit 2011f70
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion components/lib/password/Password.vue
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,12 @@ export default {
}
},
setPasswordMeter() {
if (!this.modelValue) return;
if (!this.modelValue) {
this.meter = null;
this.infoText = this.promptText;
return;
}
const { meter, label } = this.checkPasswordStrength(this.modelValue);
Expand Down

0 comments on commit 2011f70

Please sign in to comment.