From 70cc8bc0e44552e4e71cc7db9239c616f85a060e Mon Sep 17 00:00:00 2001
From: rhenck <richard.henck@iqb.hu-berlin.de>
Date: Thu, 14 Oct 2021 13:41:29 +0200
Subject: [PATCH] [editor] Remove unused code and console statements

---
 .../page-view/properties/element-properties.component.ts        | 2 --
 1 file changed, 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 0ea3b7744..46b236235 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
@@ -19,7 +19,6 @@ import { UIElement } from '../../../../../../../common/classes/uIElement';
 })
 export class ElementPropertiesComponent implements OnInit, OnDestroy {
   selectedElements!: UIElement[];
-  // combinedProperties: Record<string, string | number | boolean | string[] | undefined> = {};
   combinedProperties: UIElement = {} as UIElement;
   private ngUnsubscribe = new Subject<void>();
 
@@ -69,7 +68,6 @@ export class ElementPropertiesComponent implements OnInit, OnDestroy {
         });
       }
     }
-    console.log('combined:', this.combinedProperties);
   }
 
   updateModel(property: string,
-- 
GitLab