From 25680255f7405a0cd989f8951693d33d24923266 Mon Sep 17 00:00:00 2001
From: rhenck <richard.henck@iqb.hu-berlin.de>
Date: Mon, 18 Oct 2021 12:47:11 +0200
Subject: [PATCH] [editor] Fix elements created in dynamic section

The new elements now correctly set their own dynamicPositioning
parameter to the setting of it's parent section.
---
 projects/common/models/section.ts | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/projects/common/models/section.ts b/projects/common/models/section.ts
index 0f6ddcfa3..fce7ed6c5 100644
--- a/projects/common/models/section.ts
+++ b/projects/common/models/section.ts
@@ -25,7 +25,9 @@ export class Section {
   }
 
   async addElement(elementType: string, coordinates: { x: number; y: number } | undefined): Promise<void> {
-    this.elements.push(await ElementFactory.createElement({ type: elementType } as UIElement, coordinates));
+    this.elements.push(await ElementFactory.createElement(
+      { type: elementType, dynamicPositioning: this.dynamicPositioning } as UIElement, coordinates
+    ));
   }
 
   deleteElements(elements: UIElement[]): void {
-- 
GitLab