summaryrefslogtreecommitdiffstats
path: root/catalog-ui/src/app/ng2/pages/interface-operation/operation-creator/param-row/param-row.component.html
diff options
context:
space:
mode:
authorArielk <Ariel.Kenan@amdocs.com>2018-10-16 16:29:14 +0300
committerArielk <Ariel.Kenan@amdocs.com>2018-10-16 16:29:27 +0300
commita8a714ac431ec812b9f25aa540be5bab0b522da8 (patch)
tree78d8dcb3e54120dfaa9bc479af4c179f121274b1 /catalog-ui/src/app/ng2/pages/interface-operation/operation-creator/param-row/param-row.component.html
parentbc20534de90f17f2215309af6fe986e899c98fa5 (diff)
Fixes for workflow association of operation
Change-Id: Iae0bc661f986614b8223c247339aab728c14f5f7 Issue-ID: SDC-1814 Signed-off-by: Arielk <Ariel.Kenan@amdocs.com>
Diffstat (limited to 'catalog-ui/src/app/ng2/pages/interface-operation/operation-creator/param-row/param-row.component.html')
-rw-r--r--catalog-ui/src/app/ng2/pages/interface-operation/operation-creator/param-row/param-row.component.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/catalog-ui/src/app/ng2/pages/interface-operation/operation-creator/param-row/param-row.component.html b/catalog-ui/src/app/ng2/pages/interface-operation/operation-creator/param-row/param-row.component.html
index 29e8a3508b..94d2fce1ea 100644
--- a/catalog-ui/src/app/ng2/pages/interface-operation/operation-creator/param-row/param-row.component.html
+++ b/catalog-ui/src/app/ng2/pages/interface-operation/operation-creator/param-row/param-row.component.html
@@ -38,14 +38,14 @@
<div class="cell field-property" *ngIf="isInputParam">
<ui-element-dropdown
- *ngIf="filteredInputProps.length > 0"
+ *ngIf="filteredInputProps.length > 0 || !isAssociateWorkflow"
data-tests-id="paramProperty"
[values]="filteredInputProps"
[(value)]="param.property"
[readonly]="readonly">
</ui-element-dropdown>
<span
- *ngIf="filteredInputProps.length == 0"
+ *ngIf="filteredInputProps.length == 0 && isAssociateWorkflow"
class="no-properties-error">
No available properties of this type.
</span>