From e348a7e205b560bda1d51477dbec3c77c01b7140 Mon Sep 17 00:00:00 2001
From: rhenck <richard.henck@iqb.hu-berlin.de>
Date: Thu, 19 Aug 2021 17:43:13 +0200
Subject: [PATCH] [editor] Fix preselection of values for drowdown and radio

---
 .../page-view/properties/element-properties.component.ts     | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

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 606b1ded6..deee93a51 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>
-- 
GitLab