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:
commit
45c6d02d0b
|
@ -77,7 +77,7 @@ export class OptionsComponent implements OnInit {
|
||||||
ConstantsService.enableAutoFillOnPageLoadKey);
|
ConstantsService.enableAutoFillOnPageLoadKey);
|
||||||
|
|
||||||
this.autoFillOnPageLoadDefault = await this.storageService.get<boolean>(
|
this.autoFillOnPageLoadDefault = await this.storageService.get<boolean>(
|
||||||
ConstantsService.autoFillOnPageLoadDefaultKey) ?? false;
|
ConstantsService.autoFillOnPageLoadDefaultKey) ?? true;
|
||||||
|
|
||||||
this.disableAddLoginNotification = await this.storageService.get<boolean>(
|
this.disableAddLoginNotification = await this.storageService.get<boolean>(
|
||||||
ConstantsService.disableAddLoginNotificationKey);
|
ConstantsService.disableAddLoginNotificationKey);
|
||||||
|
|
Loading…
Reference in New Issue