1
0
mirror of https://github.com/bitwarden/browser synced 2026-02-02 09:43:29 +00:00

PM-27739 change the data type of the table data source

This commit is contained in:
voommen-livefront
2025-11-05 11:41:20 -06:00
parent 819c28600b
commit 0237a5891a

View File

@@ -17,6 +17,7 @@ import { createNewSummaryData } from "@bitwarden/bit-common/dirt/reports/risk-in
import { OrganizationReportSummary } from "@bitwarden/bit-common/dirt/reports/risk-insights/models/report-models";
import { I18nService } from "@bitwarden/common/platform/abstractions/i18n.service";
import { OrganizationId } from "@bitwarden/common/types/guid";
import { CipherView } from "@bitwarden/common/vault/models/view/cipher.view";
import { NoItemsModule, SearchModule, TableDataSource, ToastService } from "@bitwarden/components";
import { CardComponent } from "@bitwarden/dirt-card";
import { HeaderModule } from "@bitwarden/web-vault/app/layouts/header/header.module";
@@ -49,7 +50,9 @@ export class CriticalApplicationsComponent implements OnInit {
protected organizationId: OrganizationId;
noItemsIcon = Security;
protected dataSource = new TableDataSource<ApplicationHealthReportDetailEnriched>();
protected dataSource = new TableDataSource<
ApplicationHealthReportDetailEnriched & { ciphers: CipherView[] }
>();
protected applicationSummary = {} as OrganizationReportSummary;
protected selectedIds: Set<number> = new Set<number>();