1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-13 06:43:35 +00:00

make minimumLength msg update if mp policy is enforced (#10105)

This commit is contained in:
rr-bw
2024-07-16 09:36:05 -07:00
committed by GitHub
parent e2c99c2cdf
commit aa8c5b1516

View File

@@ -62,6 +62,10 @@ export class ChangePasswordComponent implements OnInit, OnDestroy {
(enforcedPasswordPolicyOptions) =>
(this.enforcedPolicyOptions ??= enforcedPasswordPolicyOptions),
);
if (this.enforcedPolicyOptions?.minLength) {
this.minimumLength = this.enforcedPolicyOptions.minLength;
}
}
ngOnDestroy(): void {