From 3800610bb6b87e60203868b84808f4e6019de1e5 Mon Sep 17 00:00:00 2001 From: Maciej Zieniuk <167752252+mzieniukbw@users.noreply.github.com> Date: Fri, 21 Feb 2025 22:14:13 +0100 Subject: [PATCH] PM-18509: Unable to unlock vault (#13516) --- libs/key-management-ui/src/lock/components/lock.component.ts | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/libs/key-management-ui/src/lock/components/lock.component.ts b/libs/key-management-ui/src/lock/components/lock.component.ts index 63152e8cb19..4661a4167fd 100644 --- a/libs/key-management-ui/src/lock/components/lock.component.ts +++ b/libs/key-management-ui/src/lock/components/lock.component.ts @@ -527,8 +527,11 @@ export class LockComponent implements OnInit, OnDestroy { this.enforcedMasterPasswordOptions = MasterPasswordPolicyOptions.fromResponse( masterPasswordVerificationResponse.policyOptions, ); - passwordValid = true; + } else { + this.enforcedMasterPasswordOptions = undefined; } + + passwordValid = true; } catch (e) { this.logService.error(e); }