소스 검색

Fix: password check in page of install (#3978)

tags/0.6.6
KVOJJJin 1 년 전
부모
커밋
2fd702a319
No account linked to committer's email address
1개의 변경된 파일3개의 추가작업 그리고 1개의 파일을 삭제
  1. 3
    1
      web/app/install/installForm.tsx

+ 3
- 1
web/app/install/installForm.tsx 파일 보기

@@ -48,8 +48,10 @@ const InstallForm = () => {
showErrorMessage(t('login.error.passwordEmpty'))
return false
}
if (!validPassword.test(password))
if (!validPassword.test(password)) {
showErrorMessage(t('login.error.passwordInvalid'))
return false
}

return true
}

Loading…
취소
저장