1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-18 09:13:33 +00:00

[PM-26929] filter at risk passwords count to only critical apps (#16879)

* filter at risk passwords count to only critical apps

* PM-26929 assign tasks to those apps that are marked as critical

---------

Co-authored-by: voommen-livefront <voommen@livefront.com>
This commit is contained in:
Alex
2025-10-27 14:38:49 -04:00
committed by GitHub
parent 2ff9c23dc4
commit 32a40a91f5
2 changed files with 4 additions and 7 deletions

View File

@@ -191,7 +191,7 @@ export class PasswordChangeMetricComponent implements OnInit {
async assignTasks() {
await this.accessIntelligenceSecurityTasksService.assignTasks(
this.organizationId,
this.allApplicationsDetails,
this.allApplicationsDetails.filter((app) => app.isMarkedAsCritical),
);
}
}