From dae41425a479ac55ab7cbd1fab045237e940b7f9 Mon Sep 17 00:00:00 2001 From: Thomas Rittson Date: Fri, 21 May 2021 09:11:04 +1000 Subject: [PATCH] Change Autofill on Page Load default to autofill --- src/popup/settings/options.component.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/popup/settings/options.component.ts b/src/popup/settings/options.component.ts index 9ae845e356..51ee605272 100644 --- a/src/popup/settings/options.component.ts +++ b/src/popup/settings/options.component.ts @@ -77,7 +77,7 @@ export class OptionsComponent implements OnInit { ConstantsService.enableAutoFillOnPageLoadKey); this.autoFillOnPageLoadDefault = await this.storageService.get( - ConstantsService.autoFillOnPageLoadDefaultKey) ?? false; + ConstantsService.autoFillOnPageLoadDefaultKey) ?? true; this.disableAddLoginNotification = await this.storageService.get( ConstantsService.disableAddLoginNotificationKey);