mirror of
https://github.com/bitwarden/browser
synced 2025-12-14 07:13:32 +00:00
* Update guard services and routing * Add depenent checkbox to handle sub permissions * Present new collections premissions * Use new split permissions * Rename to nested-checkbox.component * Clarify css class name * update jslib
19 lines
851 B
HTML
19 lines
851 B
HTML
<div class="form-group mb-0">
|
|
<div class="form-check mt-1 form-check-block">
|
|
<input class="form-check-input" type="checkbox" [name]="pascalize(parentId)" [id]="parentId"
|
|
[(ngModel)]="parentChecked" [indeterminate]="parentIndeterminate">
|
|
<label class="form-check-label font-weight-normal" [for]="parentId">
|
|
{{parentId | i18n}}
|
|
</label>
|
|
</div>
|
|
<div class="form-group form-group-child-check mb-0">
|
|
<div class="form-check mt-1" *ngFor="let c of checkboxes">
|
|
<input class="form-check-input" type="checkbox" [name]="pascalize(c.id)" [id]="c.id" [ngModel]="c.get()"
|
|
(ngModelChange)="c.set($event)">
|
|
<label class="form-check-label font-weight-normal" [for]="c.id">
|
|
{{c.id | i18n}}
|
|
</label>
|
|
</div>
|
|
</div>
|
|
</div>
|