1
0
mirror of https://github.com/bitwarden/browser synced 2026-02-05 11:13:44 +00:00

Merge branch 'main' into auth/pm-25130/inactive-user-server-notification

This commit is contained in:
Patrick-Pimentel-Bitwarden
2025-08-25 16:41:54 -04:00
committed by GitHub
2 changed files with 3 additions and 3 deletions

View File

@@ -326,7 +326,7 @@
</td>
</ng-template>
<td bitCell class="tw-text-muted">
<td bitCell class="tw-text-muted tw-space-x-2">
<ng-container *ngIf="u.twoFactorEnabled">
<i
class="bwi bwi-lock"

View File

@@ -87,10 +87,10 @@ export type Permission = {
export const getPermissionList = (): Permission[] => {
const permissions = [
{ perm: CollectionPermission.View, labelId: "viewItems" },
{ perm: CollectionPermission.ViewExceptPass, labelId: "viewItemsHidePass" },
{ perm: CollectionPermission.Edit, labelId: "editItems" },
{ perm: CollectionPermission.View, labelId: "viewItems" },
{ perm: CollectionPermission.EditExceptPass, labelId: "editItemsHidePass" },
{ perm: CollectionPermission.Edit, labelId: "editItems" },
{ perm: CollectionPermission.Manage, labelId: "manageCollection" },
];