1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-06 00:13:28 +00:00

Hide Open At Login Option On Windows Store Installs (#12112)

This commit is contained in:
Justin Baur
2024-12-26 15:25:37 -05:00
committed by GitHub
parent eb7b2cd3e0
commit b3155d19dd
2 changed files with 4 additions and 1 deletions

View File

@@ -334,7 +334,7 @@
</div>
<small id="startToTrayHelp" class="help-block">{{ startToTrayDescText }}</small>
</div>
<div class="form-group">
<div class="form-group" *ngIf="showOpenAtLoginOption">
<div class="checkbox">
<label for="openAtLogin">
<input

View File

@@ -58,6 +58,7 @@ export class SettingsComponent implements OnInit, OnDestroy {
requireEnableTray = false;
showDuckDuckGoIntegrationOption = false;
showSshAgentOption = false;
showOpenAtLoginOption = false;
isWindows: boolean;
isLinux: boolean;
@@ -166,6 +167,8 @@ export class SettingsComponent implements OnInit, OnDestroy {
this.startToTrayText = this.i18nService.t(startToTrayKey);
this.startToTrayDescText = this.i18nService.t(startToTrayKey + "Desc");
this.showOpenAtLoginOption = !ipc.platform.isWindowsStore;
// DuckDuckGo browser is only for macos initially
this.showDuckDuckGoIntegrationOption = isMac;