mirror of
https://github.com/bitwarden/browser
synced 2026-01-08 03:23:50 +00:00
[EC-1050] add CL checkbox to tables (#4600)
* [EC-1050] use CL checkbox on Members table * [EC-1050] use CL checkboxes on vault table * [EC-1050] use CL checkboxes on Groups table
This commit is contained in:
@@ -14,6 +14,7 @@
|
||||
<input
|
||||
class="tw-mr-2"
|
||||
type="checkbox"
|
||||
bitCheckbox
|
||||
id="checkAll"
|
||||
(change)="checkAll($any($event.target).checked)"
|
||||
[(ngModel)]="isAllChecked"
|
||||
@@ -85,6 +86,7 @@
|
||||
*ngIf="canDeleteCollection(col.node)"
|
||||
class="tw-cursor-pointer"
|
||||
type="checkbox"
|
||||
bitCheckbox
|
||||
[(ngModel)]="$any(col).checked"
|
||||
appStopProp
|
||||
/>
|
||||
@@ -170,7 +172,7 @@
|
||||
alignContent="middle"
|
||||
>
|
||||
<td bitCell (click)="checkRow(c)" appStopProp>
|
||||
<input type="checkbox" [(ngModel)]="$any(c).checked" appStopProp />
|
||||
<input type="checkbox" bitCheckbox [(ngModel)]="$any(c).checked" appStopProp />
|
||||
</td>
|
||||
<td bitCell>
|
||||
<app-vault-icon [cipher]="c"></app-vault-icon>
|
||||
|
||||
Reference in New Issue
Block a user