diff --git a/projects/editor/src/app/components/unit-view/page-view/properties/element-properties.component.ts b/projects/editor/src/app/components/unit-view/page-view/properties/element-properties.component.ts index 606b1ded659ac62672d04909ef217a2903a9da61..deee93a5157d857beb681943e49e1543793ece28 100644 --- a/projects/editor/src/app/components/unit-view/page-view/properties/element-properties.component.ts +++ b/projects/editor/src/app/components/unit-view/page-view/properties/element-properties.component.ts @@ -56,9 +56,10 @@ import { SelectionService } from '../../../../selection.service'; <mat-form-field *ngIf="combinedProperties.type === 'dropdown' || combinedProperties.type === 'radio'" appearance="fill"> <mat-label>Vorbelegung</mat-label> - <mat-select (selectionChange)="updateModel('value', $event.value)"> + <mat-select [value]="combinedProperties.value" + (selectionChange)="updateModel('value', $event.value)"> <mat-option>undefiniert</mat-option> - <mat-option *ngFor="let option of $any(combinedProperties).options; let i = index" [value]="i"> + <mat-option *ngFor="let option of $any(combinedProperties).options" [value]="option"> {{option}} </mat-option> </mat-select>