Fix bugs with loading of themes

This commit is contained in:
Pieter Vander Vennet 2020-10-17 03:19:14 +02:00
parent 07e611bf10
commit e0694fee9d
4 changed files with 12 additions and 6 deletions

View file

@ -17,7 +17,6 @@ export class ElementStorage {
addElement(element): UIEventSource<any> {
const eventSource = new UIEventSource<any>(element.properties);
console.log("Creating a new tag storate for ", element.properties.id)
this._elements[element.properties.id] = eventSource;
return eventSource;
}