From 6fd77a071dbcbc6b7d7e54383c45372910d0a8e8 Mon Sep 17 00:00:00 2001 From: ThinaticSystem Date: Thu, 12 Aug 2021 20:10:16 +0900 Subject: [PATCH] =?UTF-8?q?fix=20=E3=82=B5=E3=82=A4=E3=83=B3=E3=82=A2?= =?UTF-8?q?=E3=83=83=E3=83=97=E7=94=BB=E9=9D=A2=E3=81=AE=E3=83=91=E3=82=B9?= =?UTF-8?q?=E3=83=AF=E3=83=BC=E3=83=89=E5=86=8D=E5=85=A5=E5=8A=9B=E3=82=92?= =?UTF-8?q?=E3=81=84=E3=81=84=E6=84=9F=E3=81=98=E3=81=AB?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/client/components/signup.vue | 1 + 1 file changed, 1 insertion(+) diff --git a/src/client/components/signup.vue b/src/client/components/signup.vue index 0cdeb633d..671de4b16 100644 --- a/src/client/components/signup.vue +++ b/src/client/components/signup.vue @@ -156,6 +156,7 @@ export default defineComponent({ const strength = getPasswordStrength(this.password); this.passwordStrength = strength > 0.7 ? 'high' : strength > 0.3 ? 'medium' : 'low'; + this.passwordRetypeState = this.password == this.retypedPassword ? 'match' : 'not-match'; }, onChangePasswordRetype() {