1
0
mirror of https://github.com/bitwarden/browser synced 2026-02-26 01:23:24 +00:00

Merge pull request #1857 from bitwarden/aopl-default-fix

[Autofill on Page Load options] Change default per-item setting to "autofill"
This commit is contained in:
Thomas Rittson
2021-05-24 06:51:26 +10:00
committed by GitHub

View File

@@ -77,7 +77,7 @@ export class OptionsComponent implements OnInit {
ConstantsService.enableAutoFillOnPageLoadKey);
this.autoFillOnPageLoadDefault = await this.storageService.get<boolean>(
ConstantsService.autoFillOnPageLoadDefaultKey) ?? false;
ConstantsService.autoFillOnPageLoadDefaultKey) ?? true;
this.disableAddLoginNotification = await this.storageService.get<boolean>(
ConstantsService.disableAddLoginNotificationKey);