aboutsummaryrefslogtreecommitdiffstats
path: root/sdc-workflow-designer-ui/src/app/components/property/properties.component.ts
diff options
context:
space:
mode:
Diffstat (limited to 'sdc-workflow-designer-ui/src/app/components/property/properties.component.ts')
-rw-r--r--sdc-workflow-designer-ui/src/app/components/property/properties.component.ts17
1 files changed, 6 insertions, 11 deletions
diff --git a/sdc-workflow-designer-ui/src/app/components/property/properties.component.ts b/sdc-workflow-designer-ui/src/app/components/property/properties.component.ts
index 2091d83c..d3a6a416 100644
--- a/sdc-workflow-designer-ui/src/app/components/property/properties.component.ts
+++ b/sdc-workflow-designer-ui/src/app/components/property/properties.component.ts
@@ -35,8 +35,8 @@ export class PropertiesComponent implements AfterViewInit {
public planItems: PlanTreeviewItem[];
constructor(private broadcastService: BroadcastService,
- private jsPlumnService: JsPlumbService,
- private processService: ModelService) {
+ private jsPlumbService: JsPlumbService,
+ private modelService: ModelService) {
}
@@ -44,19 +44,14 @@ export class PropertiesComponent implements AfterViewInit {
this.broadcastService.showProperty$.subscribe(show => this.show = show);
this.broadcastService.nodeProperty$.subscribe(node => {
this.node = node;
- this.planItems = this.processService.getPlanParameters(this.node.id);
+ this.planItems = this.modelService.getPlanParameters(this.node.id);
});
}
- public nodeNameChanged() {
- this.titleEditing = !this.titleEditing;
- this.jsPlumnService.jsplumbInstance.repaintEverything();
- }
-
public deleteNode() {
this.show = false;
-
- this.jsPlumnService.remove(this.node.id);
- this.processService.deleteNode(this.node.id);
+ const parentId = this.jsPlumbService.getParentNodeId(this.node.id);
+ this.jsPlumbService.remove(this.node);
+ this.modelService.deleteNode(parentId, this.node.id);
}
}