1
0
mirror of https://github.com/bitwarden/browser synced 2026-02-10 13:40:06 +00:00

Revert "[PM-18456] Display unassigned items in reports (#13612)"

This reverts commit 0b6828a72b.
This commit is contained in:
Vijay Oommen
2025-02-27 15:02:17 -06:00
committed by GitHub
parent 0b6828a72b
commit 1c6666672c
5 changed files with 0 additions and 15 deletions

View File

@@ -91,9 +91,6 @@ export class ExposedPasswordsReportComponent
}
canManageCipher(c: CipherView): boolean {
if (c.collectionIds.length === 0) {
return true;
}
return this.manageableCiphers.some((x) => x.id === c.id);
}
}

View File

@@ -94,9 +94,6 @@ export class InactiveTwoFactorReportComponent
}
protected canManageCipher(c: CipherView): boolean {
if (c.collectionIds.length === 0) {
return true;
}
return this.manageableCiphers.some((x) => x.id === c.id);
}
}

View File

@@ -89,9 +89,6 @@ export class ReusedPasswordsReportComponent
}
canManageCipher(c: CipherView): boolean {
if (c.collectionIds.length === 0) {
return true;
}
return this.manageableCiphers.some((x) => x.id === c.id);
}
}

View File

@@ -94,9 +94,6 @@ export class UnsecuredWebsitesReportComponent
}
protected canManageCipher(c: CipherView): boolean {
if (c.collectionIds.length === 0) {
return true;
}
return this.manageableCiphers.some((x) => x.id === c.id);
}
}

View File

@@ -93,9 +93,6 @@ export class WeakPasswordsReportComponent
}
canManageCipher(c: CipherView): boolean {
if (c.collectionIds.length === 0) {
return true;
}
return this.manageableCiphers.some((x) => x.id === c.id);
}
}