mirror of
https://github.com/bitwarden/browser.git
synced 2025-01-20 21:01:29 +01:00
Hide Open At Login Option On Windows Store Installs (#12112)
This commit is contained in:
parent
eb7b2cd3e0
commit
b3155d19dd
@ -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
|
||||
|
@ -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;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user