1
0
mirror of https://github.com/bitwarden/browser synced 2026-02-24 00:23:17 +00:00

[PM-30540] Access Intelligence action button updates (mark critical, assign tasks) (#18730)

Updates the buttons available in the Access Intelligence "Applications" tab.

- The "Mark as critical" button appears when at least 1 row is selected in the table, and if all selected applications are already marked critical, changes to a "Mark as not critical" button. This functionality allows Admins to either bulk mark critical applications, or bulk unmark critical applications.
- "Assign tasks" has been moved into this tab view, and now is only enabled when there are critical ciphers found without assigned password change tasks. A tooltip appears when hovering on the disabled state, informing the Admin that all tasks have already been assigned.
This commit is contained in:
Brad
2026-02-10 15:08:20 -08:00
committed by jaasen-livefront
parent edd9832272
commit c3fc39deb4
11 changed files with 282 additions and 91 deletions

View File

@@ -268,6 +268,42 @@
}
}
},
"numCriticalApplicationsMarkedSuccess": {
"message": "$COUNT$ applications marked critical",
"placeholders": {
"count": {
"content": "$1",
"example": "3"
}
}
},
"numApplicationsUnmarkedCriticalSuccess": {
"message": "$COUNT$ applications marked not critical",
"placeholders": {
"count": {
"content": "$1",
"example": "3"
}
}
},
"markAppCountAsCritical": {
"message": "Mark $COUNT$ as critical",
"placeholders": {
"count": {
"content": "$1",
"example": "3"
}
}
},
"markAppCountAsNotCritical": {
"message": "Mark $COUNT$ as not critical",
"placeholders": {
"count": {
"content": "$1",
"example": "3"
}
}
},
"applicationsMarkedAsCriticalFail": {
"message": "Failed to mark applications as critical"
},
@@ -10148,6 +10184,9 @@
"assignTasks": {
"message": "Assign tasks"
},
"allTasksAssigned": {
"message": "All tasks have been assigned"
},
"assignSecurityTasksToMembers": {
"message": "Send notifications to change passwords"
},