1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-10 21:33:27 +00:00

fix: missing changes (#4832)

This commit is contained in:
Brandon Maharaj
2023-02-28 02:04:41 -05:00
committed by GitHub
parent c160827272
commit 6adcb35dd7

View File

@@ -109,7 +109,7 @@ export class ResetPasswordComponent implements OnInit, OnDestroy {
return false;
}
if (this.newPassword.length < 8) {
if (this.newPassword.length < Utils.minimumPasswordLength) {
this.platformUtilsService.showToast(
"error",
this.i18nService.t("errorOccurred"),