1
0
mirror of https://github.com/bitwarden/browser synced 2026-02-09 13:10:17 +00:00
This commit is contained in:
Colton Hurst
2025-08-06 09:17:35 -04:00
parent 83dc036a89
commit 99a4b19394
4 changed files with 14 additions and 6 deletions

View File

@@ -18,7 +18,6 @@ import { getUserId } from "@bitwarden/common/auth/services/account.service";
import { AutofillSettingsServiceAbstraction } from "@bitwarden/common/autofill/services/autofill-settings.service";
import { DomainSettingsService } from "@bitwarden/common/autofill/services/domain-settings.service";
import { DeviceType } from "@bitwarden/common/enums";
import { FeatureFlag } from "@bitwarden/common/enums/feature-flag.enum";
import { PinServiceAbstraction } from "@bitwarden/common/key-management/pin/pin.service.abstraction";
import {
VaultTimeout,
@@ -267,10 +266,7 @@ export class SettingsComponent implements OnInit, OnDestroy {
// Autotype is for Windows initially
const isWindows = this.platformUtilsService.getDevice() === DeviceType.WindowsDesktop;
const windowsDesktopAutotypeFeatureFlag = await this.configService.getFeatureFlag(
FeatureFlag.WindowsDesktopAutotype,
);
this.showEnableAutotype = isWindows && windowsDesktopAutotypeFeatureFlag;
this.showEnableAutotype = isWindows;
this.userHasMasterPassword = await this.userVerificationService.hasMasterPassword();

View File

@@ -100,6 +100,8 @@ const SyncInterval = 6 * 60 * 60 * 1000; // 6 hours
<ng-template #loginApproval></ng-template>
<app-header></app-header>
<div class="test-banner">This is a test build, do not use production data.</div>
<div id="container">
<div class="loading" *ngIf="loading">
<i class="bwi bwi-spinner bwi-spin bwi-3x" aria-hidden="true"></i>

View File

@@ -350,7 +350,7 @@ export class Main {
await this.trayMain.hideToTray();
}
this.powerMonitorMain.init();
await this.updaterMain.init();
//await this.updaterMain.init();
const [browserIntegrationEnabled, ddgIntegrationEnabled] = await Promise.all([
firstValueFrom(this.desktopSettingsService.browserIntegrationEnabled$),

View File

@@ -11,6 +11,16 @@ app-root {
min-height: 0;
}
.test-banner {
height: 5%;
background-color: #ffe478;
color: #000000;
padding: 8px 16px;
text-align: center;
font-weight: 500;
border-bottom: 1px solid #e4c76e;
}
.vault {
height: 100%;
display: flex;