From 8a9c8c4363f96b111f940df4f7f1fbcd7899d9c7 Mon Sep 17 00:00:00 2001
From: rhenck <richard.henck@iqb.hu-berlin.de>
Date: Mon, 8 Nov 2021 17:47:28 +0100
Subject: [PATCH] [editor] Fix hidden autoStartDelay property

The player-element dialog options did not show the field, even when it
has a value. Now it properly checks of the existing config has this set.
---
 projects/editor/src/app/dialog.service.ts | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/projects/editor/src/app/dialog.service.ts b/projects/editor/src/app/dialog.service.ts
index 416f435e6..75cc5d3d9 100644
--- a/projects/editor/src/app/dialog.service.ts
+++ b/projects/editor/src/app/dialog.service.ts
@@ -211,7 +211,7 @@ export class RichTextEditDialog {
                           (change)="newPlayerConfig.autostart = $event.checked">
               {{ 'player.autoStart' | translate }}
             </mat-checkbox>
-            <mat-form-field *ngIf="newPlayerConfig.autostart" appearance="fill">
+            <mat-form-field *ngIf="newPlayerConfig.autostart || data.player.autostart" appearance="fill">
               <mat-label>{{ 'player.autoStartDelay' | translate }}</mat-label>
               <input matInput type="number" step="1000"
                      [value]="newPlayerConfig.autostartDelay || data.player.autostartDelay"
-- 
GitLab