From c7a553ffb868bc55d4685ea0a56421c9c28f1acb Mon Sep 17 00:00:00 2001 From: Burtchen Date: Fri, 2 Jul 2021 19:03:04 +0200 Subject: [PATCH] Linting fixes in Password.vue Three small fixes: - className where "class" is correct - a let that should be a const as the variable is never reassigned - a superfluous % after a "0" CSS value --- src/components/password/Password.vue | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/components/password/Password.vue b/src/components/password/Password.vue index 09b265aad..40d1f2ee2 100755 --- a/src/components/password/Password.vue +++ b/src/components/password/Password.vue @@ -10,7 +10,7 @@
-
{{infoText}}
+
{{infoText}}
@@ -164,7 +164,7 @@ export default { }, onKeyUp(event) { if (this.feedback) { - let value = event.target.value; + const value = event.target.value; let label = null; let meter = null; @@ -330,7 +330,7 @@ export default { .p-password-strength { height: 100%; - width: 0%; + width: 0; transition: width 1s ease-in-out; }