mirror of
https://github.com/bitwarden/desktop.git
synced 2024-11-24 11:55:50 +01:00
[bug] Move enableBrowserIntegration to global settings (#1265)
* [bug] Move enableBrowserIntegration to global settings * [style] Ran prettier * [chore] Update jslib
This commit is contained in:
parent
7d46e5c145
commit
c458b4d8a9
2
jslib
2
jslib
@ -1 +1 @@
|
|||||||
Subproject commit 4436e5fb609f7991cc168f5eaca776349dcc5531
|
Subproject commit e5cc3de46d4bd628279977a3073efda895f3d2dd
|
@ -176,39 +176,6 @@
|
|||||||
</div>
|
</div>
|
||||||
<small class="help-block">{{ "disableFaviconDesc" | i18n }}</small>
|
<small class="help-block">{{ "disableFaviconDesc" | i18n }}</small>
|
||||||
</div>
|
</div>
|
||||||
<div class="form-group">
|
|
||||||
<div class="checkbox">
|
|
||||||
<label for="enableBrowserIntegration">
|
|
||||||
<input
|
|
||||||
id="enableBrowserIntegration"
|
|
||||||
type="checkbox"
|
|
||||||
name="EnableBrowserIntegration"
|
|
||||||
[(ngModel)]="enableBrowserIntegration"
|
|
||||||
(change)="saveBrowserIntegration()"
|
|
||||||
/>
|
|
||||||
{{ "enableBrowserIntegration" | i18n }}
|
|
||||||
</label>
|
|
||||||
</div>
|
|
||||||
<small class="help-block">{{ "enableBrowserIntegrationDesc" | i18n }}</small>
|
|
||||||
</div>
|
|
||||||
<div class="form-group">
|
|
||||||
<div class="checkbox">
|
|
||||||
<label for="enableBrowserIntegrationFingerprint">
|
|
||||||
<input
|
|
||||||
id="enableBrowserIntegrationFingerprint"
|
|
||||||
type="checkbox"
|
|
||||||
name="EnableBrowserIntegrationFingerprint"
|
|
||||||
[(ngModel)]="enableBrowserIntegrationFingerprint"
|
|
||||||
(change)="saveBrowserIntegrationFingerprint()"
|
|
||||||
[disabled]="!enableBrowserIntegration"
|
|
||||||
/>
|
|
||||||
{{ "enableBrowserIntegrationFingerprint" | i18n }}
|
|
||||||
</label>
|
|
||||||
</div>
|
|
||||||
<small class="help-block">{{
|
|
||||||
"enableBrowserIntegrationFingerprintDesc" | i18n
|
|
||||||
}}</small>
|
|
||||||
</div>
|
|
||||||
</ng-container>
|
</ng-container>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
@ -326,6 +293,39 @@
|
|||||||
</div>
|
</div>
|
||||||
<small class="help-block">{{ "alwaysShowDockDesc" | i18n }}</small>
|
<small class="help-block">{{ "alwaysShowDockDesc" | i18n }}</small>
|
||||||
</div>
|
</div>
|
||||||
|
<div class="form-group">
|
||||||
|
<div class="checkbox">
|
||||||
|
<label for="enableBrowserIntegration">
|
||||||
|
<input
|
||||||
|
id="enableBrowserIntegration"
|
||||||
|
type="checkbox"
|
||||||
|
name="EnableBrowserIntegration"
|
||||||
|
[(ngModel)]="enableBrowserIntegration"
|
||||||
|
(change)="saveBrowserIntegration()"
|
||||||
|
/>
|
||||||
|
{{ "enableBrowserIntegration" | i18n }}
|
||||||
|
</label>
|
||||||
|
</div>
|
||||||
|
<small class="help-block">{{ "enableBrowserIntegrationDesc" | i18n }}</small>
|
||||||
|
</div>
|
||||||
|
<div class="form-group">
|
||||||
|
<div class="checkbox">
|
||||||
|
<label for="enableBrowserIntegrationFingerprint">
|
||||||
|
<input
|
||||||
|
id="enableBrowserIntegrationFingerprint"
|
||||||
|
type="checkbox"
|
||||||
|
name="EnableBrowserIntegrationFingerprint"
|
||||||
|
[(ngModel)]="enableBrowserIntegrationFingerprint"
|
||||||
|
(change)="saveBrowserIntegrationFingerprint()"
|
||||||
|
[disabled]="!enableBrowserIntegration"
|
||||||
|
/>
|
||||||
|
{{ "enableBrowserIntegrationFingerprint" | i18n }}
|
||||||
|
</label>
|
||||||
|
</div>
|
||||||
|
<small class="help-block">{{
|
||||||
|
"enableBrowserIntegrationFingerprintDesc" | i18n
|
||||||
|
}}</small>
|
||||||
|
</div>
|
||||||
<div class="form-group">
|
<div class="form-group">
|
||||||
<label for="theme">{{ "theme" | i18n }}</label>
|
<label for="theme">{{ "theme" | i18n }}</label>
|
||||||
<select id="theme" name="Theme" [(ngModel)]="theme" (change)="saveTheme()">
|
<select id="theme" name="Theme" [(ngModel)]="theme" (change)="saveTheme()">
|
||||||
|
Loading…
Reference in New Issue
Block a user