1
0
mirror of https://github.com/bitwarden/browser.git synced 2024-12-22 16:29:09 +01:00

updating the location of the DefaultCipherFormCOnfigService

This commit is contained in:
--global 2024-12-19 14:28:56 -05:00
parent 7e9ddc1af0
commit 04c1e7613a
2 changed files with 3 additions and 2 deletions

View File

@ -6,7 +6,6 @@ import {
VaultTimeoutInputComponent,
} from "@bitwarden/auth/angular";
import { LayoutComponent, NavigationModule } from "@bitwarden/components";
import { DefaultCipherFormConfigService } from "@bitwarden/vault";
import { OrganizationLayoutComponent } from "../admin-console/organizations/layouts/organization-layout.component";
import { EventsComponent as OrgEventsComponent } from "../admin-console/organizations/manage/events.component";
@ -245,6 +244,5 @@ import { SharedModule } from "./shared.module";
HeaderModule,
DangerZoneComponent,
],
providers: [DefaultCipherFormConfigService],
})
export class LooseComponentsModule {}

View File

@ -1,6 +1,8 @@
import { CommonModule } from "@angular/common";
import { NgModule } from "@angular/core";
import { DefaultCipherFormConfigService } from "@bitwarden/vault";
import { HeaderModule } from "../../layouts/header/header.module";
import { SharedModule } from "../../shared";
import { OrganizationBadgeModule } from "../../vault/individual-vault/organization-badge/organization-badge.module";
@ -37,5 +39,6 @@ import { ReportsSharedModule } from "./shared";
UnsecuredWebsitesReportComponent,
WeakPasswordsReportComponent,
],
providers: [DefaultCipherFormConfigService],
})
export class ReportsModule {}