summaryrefslogtreecommitdiffstats
path: root/cds-ui/designer-client/src/app/modules/feature-modules/packages/designer/designer.component.html
diff options
context:
space:
mode:
authorKAPIL SINGAL <ks220y@att.com>2020-11-02 02:27:18 +0000
committerGerrit Code Review <gerrit@onap.org>2020-11-02 02:27:18 +0000
commit5cde17a4286c827f650811516e40936c7127c1d9 (patch)
tree247bd7c2b2720e85959c0df8ae694bfbd30cbae9 /cds-ui/designer-client/src/app/modules/feature-modules/packages/designer/designer.component.html
parent1bd149f476f2a8780f8f9e16e9aa3c8d7139adda (diff)
parenta1ec53caf1953f26d32d01e1819a4b9239140f5b (diff)
Merge "adding import inputs and outputs from functions into actions"
Diffstat (limited to 'cds-ui/designer-client/src/app/modules/feature-modules/packages/designer/designer.component.html')
-rw-r--r--cds-ui/designer-client/src/app/modules/feature-modules/packages/designer/designer.component.html13
1 files changed, 11 insertions, 2 deletions
diff --git a/cds-ui/designer-client/src/app/modules/feature-modules/packages/designer/designer.component.html b/cds-ui/designer-client/src/app/modules/feature-modules/packages/designer/designer.component.html
index a552c28f6..5695c915a 100644
--- a/cds-ui/designer-client/src/app/modules/feature-modules/packages/designer/designer.component.html
+++ b/cds-ui/designer-client/src/app/modules/feature-modules/packages/designer/designer.component.html
@@ -217,11 +217,20 @@
<div *ngIf="!showAction" class="custom-control">
<ul>
<li *ngFor="let customActionName of actions">
- <label>
+ <label [attr.for]="customActionName">
<i class="icon-file" aria-hidden="true" class="icon-file"
- (click)="openFunctionAttributes(customActionName)"></i>
+ (click)="openActionAttributes(customActionName)"
+ ></i>
{{customActionName}} </label>
+
+ <ul *ngIf="customActionName.includes(this.currentActionName)">
+ <li
+ [attr.for]="customActionName" *ngFor="let currentFunction of steps">
+ <span (click)="openFunctionAttributes(currentFunction)">{{currentFunction}}</span>
+ </li>
+ </ul>
</li>
+
</ul>
</div>
</div>