From 58142e203275f74d4b584e2a457ac75286cc11fd Mon Sep 17 00:00:00 2001
From: jojohoch <joachim.hoch@iqb.hu-berlin.de>
Date: Tue, 24 Aug 2021 12:03:31 +0200
Subject: [PATCH] [player] Swap presentationProgress and responseProgress

Fix bug
---
 projects/player/src/app/components/form.component.ts | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/projects/player/src/app/components/form.component.ts b/projects/player/src/app/components/form.component.ts
index ad6a41a4e..2c2b13a99 100644
--- a/projects/player/src/app/components/form.component.ts
+++ b/projects/player/src/app/components/form.component.ts
@@ -149,8 +149,8 @@ export class FormComponent implements OnInit, OnDestroy {
       dataParts: {
         pages: JSON.stringify(this.form.value.pages)
       },
-      responseProgress: this.presentationProgress,
-      presentationProgress: this.responseProgress,
+      presentationProgress: this.presentationProgress,
+      responseProgress: this.responseProgress,
       unitStateDataType: this.metaDataService.playerMetadata.supportedUnitStateDataTypes
     };
     this.veronaPostService.sendVopStateChangedNotification({ unitState });
-- 
GitLab