From d0fb12d7adc6b586a7d5ac078d3c6a927140bfcc Mon Sep 17 00:00:00 2001 From: Ulf Gebhardt Date: Fri, 10 May 2019 14:38:34 +0200 Subject: [PATCH] fixed comment --- webapp/components/Password/Strength.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/webapp/components/Password/Strength.vue b/webapp/components/Password/Strength.vue index cfcdf1acc..778cfb0d4 100644 --- a/webapp/components/Password/Strength.vue +++ b/webapp/components/Password/Strength.vue @@ -43,7 +43,7 @@ export default { // update password when prop is changing this.pass = pass || null - // passwordStrength is the score calculated by zxcvbn + // strength is the score calculated by zxcvbn const strength = !isEmpty(this.pass) ? zxcvbn(this.pass).score : null if (strength !== this.strength) { this.strength = strength