diff --git a/src/popup/app/global/home.html b/src/popup/app/global/home.html index 5b451834bc1..19485046c2f 100644 --- a/src/popup/app/global/home.html +++ b/src/popup/app/global/home.html @@ -1,6 +1,6 @@
{{i18n.loginOrCreateNewAccount}}
diff --git a/src/popup/app/settings/settings.component.ts b/src/popup/app/settings/settings.component.ts index 8ef7bd22c7d..6fdf465f066 100644 --- a/src/popup/app/settings/settings.component.ts +++ b/src/popup/app/settings/settings.component.ts @@ -49,7 +49,8 @@ export class SettingsController { PopupUtilsService.initListSectionItemListeners(document, angular); }, 500); - this.showOnLocked = !platformUtilsService.isFirefox() && !platformUtilsService.isEdge(); + this.showOnLocked = !platformUtilsService.isFirefox() && !platformUtilsService.isEdge() + && !platformUtilsService.isSafari(); this.storageService.get(constantsService.lockOptionKey).then((lockOption: number) => { if (lockOption != null) { let option = lockOption.toString();