diff --git a/apps/web/src/app/reports/pages/inactive-two-factor-report.component.ts b/apps/web/src/app/reports/pages/inactive-two-factor-report.component.ts index 18d669ab54..b1ca1f654d 100644 --- a/apps/web/src/app/reports/pages/inactive-two-factor-report.component.ts +++ b/apps/web/src/app/reports/pages/inactive-two-factor-report.component.ts @@ -47,13 +47,14 @@ export class InactiveTwoFactorReportComponent extends CipherReportComponent impl const docs = new Map(); allCiphers.forEach((ciph) => { - const { type, login, isDeleted, edit, id } = ciph; + const { type, login, isDeleted, edit, id, viewPassword } = ciph; if ( type !== CipherType.Login || (login.totp != null && login.totp !== "") || !login.hasUris || isDeleted || - (!this.organization && !edit) + (!this.organization && !edit) || + !viewPassword ) { return; }