chore: Entfernen der standardmäßig zugewiesenen AD Sync- und Internal-Boxen

This commit is contained in:
Developer 02 2024-09-09 13:34:03 +02:00
parent dfe848100a
commit 75e708d02d
2 changed files with 3 additions and 9 deletions

View File

@ -21,16 +21,10 @@
</div>
</div>
<div class="row">
<div [ngClass]="checkBoxBSClass(3)">
<mat-checkbox [disabled]="true">AD Sync</mat-checkbox>
</div>
<div [ngClass]="checkBoxBSClass(3)">
<mat-checkbox [(ngModel)]="checked" [disabled]="true">Internal</mat-checkbox>
</div>
<div [ngClass]="checkBoxBSClass(2)">
<div [ngClass]="formFieldBSClass">
<mat-checkbox [formControl]="active" [disabled]="true">Active</mat-checkbox>
</div>
<div class="col d-flex justify-content-center me-4 my-2">
<div [ngClass]="formFieldBSClass">
<button mat-fab extended (click)="delete()">
<mat-icon>delete</mat-icon>
Löschen

View File

@ -31,7 +31,7 @@ export class GroupFormComponent {
public readonly formFieldBSClass: string = "col d-flex justify-content-center mx-1 my-2"
public readonly buttonBSClass: string = "d-flex justify-content-center mx-1 my-2"
public readonly checkBoxBSClass: (colCount: number | undefined) => string = (colCount: number = 2) => `col-${colCount} d-flex justify-content-left mx-1 my-2`
//public readonly checkBoxBSClass: (colCount: number | undefined) => string = (colCount: number = 2) => `col-${colCount} d-flex justify-content-left mx-1 my-2`
readonly checked = model(true);