diff options
author | Ahmedeldeeb50 <ahmed.eldeeb.ext@orange.com> | 2020-11-12 15:56:27 +0200 |
---|---|---|
committer | Ahmedeldeeb50 <ahmed.eldeeb.ext@orange.com> | 2020-11-12 15:58:35 +0200 |
commit | 29d40e9c4110c64551d63a26c5fc0d71a5ef85ab (patch) | |
tree | 12a9499eaa471474b308cd8c7691baa14c7b0543 /cds-ui/designer-client/src/app/modules/feature-modules/packages/designer/designer.component.html | |
parent | a8b4aace07bec7407b851c2bdc8a89bae1b8425b (diff) |
Display input & outputs in View&edit functions.
Handle multiple Steps when displaying function from workflow.
Issue-ID: CCSDK-2900
Signed-off-by: Ahmedeldeeb50 <ahmed.eldeeb.ext@orange.com>
Change-Id: I0b511be33c6c3ab875789297044cf06afb0b7267
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.html | 15 |
1 files changed, 8 insertions, 7 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 81ae1cd1d..3ca377df7 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,15 +217,16 @@ <div *ngIf="!showAction" class="custom-control"> <ul> <li *ngFor="let customActionName of actions"> - <label [attr.for]="customActionName"> - <i class="icon-file" aria-hidden="true" class="icon-file" - (click)="openActionAttributes(customActionName)"></i> + <label (click)="openActionAttributes(customActionName)" + [attr.for]="customActionName"> + <i class="icon-file" aria-hidden="true" class="icon-file"></i> {{customActionName}} </label> - <ul *ngIf="customActionName.includes(this.currentActionName)" class="actionSubList"> - <li [attr.for]="customActionName" *ngFor="let currentFunction of steps"> - <span - (click)="openFunctionAttributes(currentFunction)">{{currentFunction}}</span> + <ul *ngIf="customActionName.includes(this.currentActionName)" + class="actionSubList"> + <li (click)="openFunctionAttributes(currentFunction)" + [attr.for]="customActionName" *ngFor="let currentFunction of steps"> + <span>{{getTarget(currentFunction)}}</span> </li> </ul> </li> |