1
0
mirror of https://github.com/bitwarden/browser synced 2026-01-08 03:23:50 +00:00

accessAll is only for collection assignments

This commit is contained in:
Kyle Spearrin
2018-10-18 12:25:25 -04:00
parent e96cbe2710
commit 726c323fe1
2 changed files with 5 additions and 5 deletions

View File

@@ -53,7 +53,7 @@
<tr *ngFor="let u of searchedUsers">
<td class="table-list-checkbox" (click)="check(u)">
<input type="checkbox" [(ngModel)]="u.checked" name="{{u.id.substr(0,8)}}_Checked"
[disabled]="u.accessAll" (change)="selectedChanged(u)" appStopProp>
[disabled]="entity === 'collection' && u.accessAll" (change)="selectedChanged(u)" appStopProp>
</td>
<td width="30" (click)="check(u)">
<app-avatar [data]="u.name || u.email" [email]="u.email" size="25" [circle]="true"