From 5a8d8b7ef00170ba9fb938765dd2de671c346649 Mon Sep 17 00:00:00 2001 From: Brad <44413459+lastbestdev@users.noreply.github.com> Date: Thu, 12 Feb 2026 11:17:09 -0800 Subject: [PATCH] [PM-31689] Fix Org 2FA report: cipher names should always show #18927 Fix issue where ciphers appearing in the Org 2FA report would render without the cipher name shown. This was happening for all ciphers in Collections the active User did not have access to. --- .../inactive-two-factor-report.component.html | 54 ++++++++----------- 1 file changed, 23 insertions(+), 31 deletions(-) diff --git a/apps/web/src/app/dirt/reports/pages/inactive-two-factor-report.component.html b/apps/web/src/app/dirt/reports/pages/inactive-two-factor-report.component.html index 4999d572969..83c7e566619 100644 --- a/apps/web/src/app/dirt/reports/pages/inactive-two-factor-report.component.html +++ b/apps/web/src/app/dirt/reports/pages/inactive-two-factor-report.component.html @@ -60,42 +60,34 @@ @if (!organization || canManageCipher(row)) { - - {{ row.name }} - + {{ row.name }} } @else { - - {{ row.name }} - + {{ row.name }} } @if (!organization && row.organizationId) { - - - {{ "shared" | i18n }} - + + {{ "shared" | i18n }} } @if (row.hasAttachments) { - - - {{ "attachments" | i18n }} - + + {{ "attachments" | i18n }} }
{{ row.subTitle }}