From 4220eafa460cc04c62f2bec8e5598299500e59b1 Mon Sep 17 00:00:00 2001 From: Alex Date: Fri, 31 Oct 2025 16:18:21 -0400 Subject: [PATCH] update dialog template to display application metrics - Update @for track to use app.applicationName - Update all app references to app.applicationName for selection logic - Add "Total items" and "Members affected" column headers - Replace placeholder cell with three data cells for metrics - Display atRiskPasswordCount, passwordCount, and atRiskMemberCount - Apply right-alignment and muted styling to secondary metrics - Direct property binding - no helper methods needed Part 4 of 5: Dialog template now displays full application data. --- .../new-applications-dialog.component.html | 26 ++++++++++++++----- 1 file changed, 20 insertions(+), 6 deletions(-) diff --git a/bitwarden_license/bit-web/src/app/dirt/access-intelligence/activity/new-applications-dialog.component.html b/bitwarden_license/bit-web/src/app/dirt/access-intelligence/activity/new-applications-dialog.component.html index 14cb2558834..49e6b0619f6 100644 --- a/bitwarden_license/bit-web/src/app/dirt/access-intelligence/activity/new-applications-dialog.component.html +++ b/bitwarden_license/bit-web/src/app/dirt/access-intelligence/activity/new-applications-dialog.component.html @@ -21,25 +21,31 @@ {{ "atRiskItems" | i18n }} + + {{ "totalItems" | i18n }} + + + {{ "membersAffected" | i18n }} + - @for (app of newApplications; track app) { + @for (app of newApplications; track app.applicationName) { @@ -47,10 +53,18 @@
- {{ app }} + {{ app.applicationName }}
- — + + {{ app.atRiskPasswordCount }} + + + {{ app.passwordCount }} + + + {{ app.atRiskMemberCount }} + }