refactor-component-creation #47

Merged
sebastian merged 9 commits from refactor-component-creation into main 2024-05-11 08:40:09 +02:00
2 changed files with 0 additions and 2 deletions
Showing only changes of commit 95a174cd4f - Show all commits

View File

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

View File

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