1
0
mirror of https://github.com/bitwarden/browser.git synced 2024-06-25 10:25:36 +02: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
commit 45c6d02d0b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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);