1
0
mirror of https://github.com/bitwarden/browser.git synced 2024-12-22 16:29:09 +01:00

Change Autofill on Page Load default to autofill

This commit is contained in:
Thomas Rittson 2021-05-21 09:11:04 +10:00
parent 6899bfd538
commit dae41425a4

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