summaryrefslogtreecommitdiffstats
path: root/sdc-workflow-designer-ui/src/app/components/editable-property/editable-property.component.ts
diff options
context:
space:
mode:
Diffstat (limited to 'sdc-workflow-designer-ui/src/app/components/editable-property/editable-property.component.ts')
-rw-r--r--sdc-workflow-designer-ui/src/app/components/editable-property/editable-property.component.ts2
1 files changed, 2 insertions, 0 deletions
diff --git a/sdc-workflow-designer-ui/src/app/components/editable-property/editable-property.component.ts b/sdc-workflow-designer-ui/src/app/components/editable-property/editable-property.component.ts
index 577a8f18..719d2a60 100644
--- a/sdc-workflow-designer-ui/src/app/components/editable-property/editable-property.component.ts
+++ b/sdc-workflow-designer-ui/src/app/components/editable-property/editable-property.component.ts
@@ -15,6 +15,7 @@ import { AfterViewInit, Component, EventEmitter, Input, Output } from '@angular/
import { ValueSource } from '../../model/value-source.enum';
import { ValueType } from '../../model/value-type.enum';
import { Parameter} from '../../model/workflow/parameter';
+import { PlanTreeviewItem } from "../../model/plan-treeview-item";
/**
* property component presents information of a workflow node.
@@ -27,6 +28,7 @@ import { Parameter} from '../../model/workflow/parameter';
})
export class EditablePropertyComponent {
@Input() public parameter: Parameter;
+ @Input() public planItems: PlanTreeviewItem[];
@Input() public showLabel: boolean;
@Input() public valueSource: ValueSource[];
@Output() public parameterChange = new EventEmitter<Parameter>();