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:
@@ -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);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -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);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -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);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -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);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -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);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user