mirror of
https://github.com/bitwarden/browser
synced 2025-12-11 13:53:34 +00:00
[PM-23888] Correct Permissions Select Input (#15995)
* Matching the collection permission select to the SM permission select. * using appA11yTitle
This commit is contained in:
@@ -50,7 +50,7 @@
|
||||
>
|
||||
<td bitCell [ngSwitch]="item.type" class="tw-w-5/12">
|
||||
<div class="tw-flex tw-items-center" *ngSwitchCase="itemType.Member">
|
||||
<bit-avatar size="small" class="tw-mr-3" text="{{ item.labelName }}"></bit-avatar>
|
||||
<i class="bwi tw-mr-3 {{ item.icon }}" aria-hidden="true"></i>
|
||||
<div class="tw-flex tw-flex-col">
|
||||
<div>
|
||||
{{ item.labelName }}
|
||||
@@ -58,7 +58,10 @@
|
||||
{{ "invited" | i18n }}
|
||||
</span>
|
||||
</div>
|
||||
<div class="tw-text-xs tw-text-muted" *ngIf="$any(item).status != 0">
|
||||
<div
|
||||
class="tw-text-xs tw-text-muted"
|
||||
*ngIf="$any(item).status != 0 && item.labelName != $any(item).email"
|
||||
>
|
||||
{{ $any(item).email }}
|
||||
</div>
|
||||
</div>
|
||||
@@ -77,10 +80,10 @@
|
||||
<td bitCell *ngIf="permissionMode != 'hidden'">
|
||||
<ng-container *ngIf="canEditItemPermission(item); else readOnlyPerm">
|
||||
<bit-form-field>
|
||||
<bit-label>{{ item.labelName }} {{ "permission" | i18n }}</bit-label>
|
||||
<bit-select
|
||||
bitInput
|
||||
formControlName="permission"
|
||||
appA11yTitle="{{ item.labelName }} {{ 'permission' | i18n }}"
|
||||
[id]="'permission' + i"
|
||||
(closed)="handleBlur()"
|
||||
>
|
||||
|
||||
Reference in New Issue
Block a user