Browse Source

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

tags/0.6.6
KVOJJJin 1 year ago
parent
commit
2fd702a319
No account linked to committer's email address
1 changed files with 3 additions and 1 deletions
  1. 3
    1
      web/app/install/installForm.tsx

+ 3
- 1
web/app/install/installForm.tsx View File

@@ -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…
Cancel
Save