Remove logging statements
All checks were successful
E2E Testing / test (push) Successful in 1m36s

This commit is contained in:
Sebastian Böckelmann 2024-05-09 18:36:58 +02:00
parent 70904dae5c
commit 95a174cd4f
2 changed files with 0 additions and 2 deletions

View File

@ -104,7 +104,6 @@ export class AppComponent implements OnInit{
if(componentCreator) { if(componentCreator) {
const createdModel = componentCreator.createModelComponent(); const createdModel = componentCreator.createModelComponent();
console.log(createdModel)
this.openModelComponent(createdModel!) this.openModelComponent(createdModel!)
const openedOverview = this.openedOverview; const openedOverview = this.openedOverview;

View File

@ -19,7 +19,6 @@ export class ItemCreator extends ModelComponentCreator {
this.selectedComponent.addItem(item, this.getInheritedGroups(this.selectedComponent)) this.selectedComponent.addItem(item, this.getInheritedGroups(this.selectedComponent))
return item; return item;
} else { } else {
console.log(this.selectedComponent)
return undefined return undefined
} }
} }