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

This commit is contained in:
KVOJJJin 2024-04-29 15:27:45 +08:00 committed by GitHub
parent f26ad16af7
commit 2fd702a319
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

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
}