From a82ac17a702339bdb1af830a6581e3b30b3f5ec1 Mon Sep 17 00:00:00 2001 From: aribeiro Date: Wed, 14 Apr 2021 15:43:59 +0100 Subject: Fix add property to a VFC Added properties to a VFC were not being displayed on the UI Issue-ID: SDC-3559 Signed-off-by: aribeiro Change-Id: Iede582ada4a25ddfb8f5ca5936c71e5c2b25e50b --- .../app/ng2/services/component-services/topology-template.service.ts | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'catalog-ui/src/app/ng2/services/component-services/topology-template.service.ts') diff --git a/catalog-ui/src/app/ng2/services/component-services/topology-template.service.ts b/catalog-ui/src/app/ng2/services/component-services/topology-template.service.ts index 992149976e..7b726e4172 100644 --- a/catalog-ui/src/app/ng2/services/component-services/topology-template.service.ts +++ b/catalog-ui/src/app/ng2/services/component-services/topology-template.service.ts @@ -374,8 +374,9 @@ export class TopologyTemplateService { // ------------------------------------------------ Properties API --------------------------------------------------// addProperty = (componentType: string, componentId: string, property: PropertyModel):Observable => { - return this.http.post(this.baseUrl + this.getServerTypeUrl(componentType) + componentId + '/properties', property.convertToServerObject()).map((response) => { - return new PropertyModel(response[Object.keys(response)[0]]); + return this.http.post(this.baseUrl + this.getServerTypeUrl(componentType) + componentId + '/properties', property.convertToServerObject()) + .map((response) => { + return new PropertyModel(response); }); } -- cgit 1.2.3-korg