From 41d3250a0ae9ce798bdfe716bab694aff4782a07 Mon Sep 17 00:00:00 2001 From: tugcekucukoglu Date: Fri, 23 Feb 2024 11:07:59 +0300 Subject: [PATCH] Fixed #5304 - Password: after reset password meter not reset --- components/lib/password/Password.vue | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/components/lib/password/Password.vue b/components/lib/password/Password.vue index a2ec8725d..7645e6bdc 100755 --- a/components/lib/password/Password.vue +++ b/components/lib/password/Password.vue @@ -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);