From 9b0f5789fade52e551917018c5fb82b6e5ee7845 Mon Sep 17 00:00:00 2001 From: "k.kedron" Date: Mon, 2 Mar 2020 13:51:08 +0100 Subject: Fix update the policy in SDC UI Refresh the property.value which is sent to the backend to properly update the policy property. Issue-ID: SDC-2797 Signed-off-by: Krystian Kedron Change-Id: If87c7acb5324cf933e9c8a4ebd5616a11d8b4c71 --- .../services/component-instance-services/component-instance.service.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'catalog-ui/src/app/ng2') diff --git a/catalog-ui/src/app/ng2/services/component-instance-services/component-instance.service.ts b/catalog-ui/src/app/ng2/services/component-instance-services/component-instance.service.ts index cc382a3df0..af6ed9d4b0 100644 --- a/catalog-ui/src/app/ng2/services/component-instance-services/component-instance.service.ts +++ b/catalog-ui/src/app/ng2/services/component-instance-services/component-instance.service.ts @@ -93,7 +93,7 @@ export class ComponentInstanceServiceNg2 { .map((res) => { return res.map((resProperty) => { let newProp = new PropertyModel(resProperty); - newProp.resourceInstanceUniqueId = componentInstanceId + newProp.resourceInstanceUniqueId = componentInstanceId; return newProp; }); }); -- cgit 1.2.3-korg