fix: Beseitige Duplikation von formControlName="firstCtrl"

This commit is contained in:
Developer 02 2024-08-21 11:27:17 +02:00
parent 83ce528e2f
commit c704d222f0

View File

@ -8,7 +8,7 @@
</mat-form-field>
<mat-form-field class="ms-5">
<mat-label>Vertragstyp</mat-label>
<mat-select [(value)]="selectedType" [formControl]="typeControl" formControlName="firstCtrl" required>
<mat-select [(value)]="selectedType" [formControl]="typeControl" required>
@for (type of types; track type) {
<mat-option [value]="type.value">{{type.viewValue}}</mat-option>
}