aboutsummaryrefslogtreecommitdiffstats
path: root/catalog-ui/src/app/ng2/services/responses/component-generic-response.ts
diff options
context:
space:
mode:
authorilanap <ilanap@amdocs.com>2020-04-01 14:25:35 +0300
committerOfir Sonsino <ofir.sonsino@intl.att.com>2020-04-05 15:15:22 +0000
commit94e7778319778713c0b4e2ccf590cefc6e18c21e (patch)
treef43f71f3e6df12009809005006bba76b77e1792e /catalog-ui/src/app/ng2/services/responses/component-generic-response.ts
parente6a4b30df9c1e712feacdacb04b205c9efd773bc (diff)
bugfix for operations screen
Add Operation Button is missing in Service management committing fix by Akiva Issue-ID: SDC-2843 Signed-off-by: ilanap <ilanap@amdocs.com> Change-Id: I9a6c89e45ea425eb9abf827906562e14a39cf1ff
Diffstat (limited to 'catalog-ui/src/app/ng2/services/responses/component-generic-response.ts')
-rw-r--r--catalog-ui/src/app/ng2/services/responses/component-generic-response.ts3
1 files changed, 2 insertions, 1 deletions
diff --git a/catalog-ui/src/app/ng2/services/responses/component-generic-response.ts b/catalog-ui/src/app/ng2/services/responses/component-generic-response.ts
index f161babfa6..301b3a4c9b 100644
--- a/catalog-ui/src/app/ng2/services/responses/component-generic-response.ts
+++ b/catalog-ui/src/app/ng2/services/responses/component-generic-response.ts
@@ -78,7 +78,7 @@ export class ComponentGenericResponse implements Serializable<ComponentGenericR
if(response.deploymentArtifacts) {
this.deploymentArtifacts = new ArtifactGroupModel(response.deploymentArtifacts);
}
- if(response.inputs) {
+ if(response.inputs) {
this.inputs = CommonUtils.initInputs(response.inputs);
}
if(response.attributes) {
@@ -100,6 +100,7 @@ export class ComponentGenericResponse implements Serializable<ComponentGenericR
this.toscaArtifacts = new ArtifactGroupModel(response.toscaArtifacts);
}
if(response.interfaces) {
+ this.interfaces = CommonUtils.initInterfaces(response.interfaces);
this.interfaceOperations = CommonUtils.initInterfaceOperations(response.interfaces);
}
if (response.componentInstancesInterfaces) {