1
0
mirror of https://github.com/bitwarden/browser.git synced 2024-09-23 03:22:50 +02:00

PM-9906 - Web Preferences Component - Fix issue where having a vault timeout policy would prevent users from updating their preferences. (#10554)

This commit is contained in:
Jared Snider 2024-08-26 13:09:38 -04:00 committed by GitHub
parent 9152c3203f
commit c3e1b09643
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -167,7 +167,10 @@ export class PreferencesComponent implements OnInit, OnDestroy {
); );
return; return;
} }
const values = this.form.value;
// must get raw value b/c the vault timeout action is disabled when a policy is applied
// which removes the timeout action property and value from the normal form.value.
const values = this.form.getRawValue();
const activeAcct = await firstValueFrom(this.accountService.activeAccount$); const activeAcct = await firstValueFrom(this.accountService.activeAccount$);