pull/5339/head
Cagatay Civici 2024-02-23 11:13:23 +03:00
commit 2011f702a3
1 changed files with 6 additions and 1 deletions

View File

@ -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);