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

Separate Autotype Setting Observable (#16521)

* Update the default autotype user setting to be separately represented

* rxjs update

* settings.component.spec.ts update
This commit is contained in:
Colton Hurst
2025-09-22 19:08:11 -04:00
committed by GitHub
parent bb119fa315
commit 3ca1395472
3 changed files with 5 additions and 1 deletions

View File

@@ -391,7 +391,7 @@ export class SettingsComponent implements OnInit, OnDestroy {
this.desktopSettingsService.sshAgentPromptBehavior$,
),
allowScreenshots: !(await firstValueFrom(this.desktopSettingsService.preventScreenshots$)),
enableAutotype: await firstValueFrom(this.desktopAutotypeService.resolvedAutotypeEnabled$),
enableAutotype: await firstValueFrom(this.desktopAutotypeService.autotypeEnabledUserSetting$),
theme: await firstValueFrom(this.themeStateService.selectedTheme$),
locale: await firstValueFrom(this.i18nService.userSetLocale$),
};