diff options
author | k.kedron <k.kedron@partner.samsung.com> | 2020-03-02 13:51:08 +0100 |
---|---|---|
committer | Ofir Sonsino <ofir.sonsino@intl.att.com> | 2020-03-05 11:01:39 +0000 |
commit | 9b0f5789fade52e551917018c5fb82b6e5ee7845 (patch) | |
tree | 5e41e4b3fc1472926db928e68d46dc0a6bf95367 /catalog-ui/src/app/ng2/services | |
parent | 8f29cc7a6dec1881d8e4197b0585ed1c0f616f16 (diff) |
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 <k.kedron@partner.samsung.com>
Change-Id: If87c7acb5324cf933e9c8a4ebd5616a11d8b4c71
Diffstat (limited to 'catalog-ui/src/app/ng2/services')
-rw-r--r-- | catalog-ui/src/app/ng2/services/component-instance-services/component-instance.service.ts | 2 |
1 files changed, 1 insertions, 1 deletions
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; }); }); |