From 5a92b1a1a74db13771947f3175682095bd91b7e3 Mon Sep 17 00:00:00 2001 From: "andre.schmid" Date: Fri, 19 Nov 2021 12:58:28 +0000 Subject: Fix incorrect vsp version id in upgrade During the upgrade of a VF through a VSP, the VSP version id passed to the backend is always the current VF version id, not the one to upgrade. Even passing the correct VSP version id, the backend was not persisting the latest version id in the metadata, keeping always the previous one. Change-Id: Ife2b92789d47a63ba5358c6ed8db8279db94ed46 Issue-ID: SDC-3790 Signed-off-by: andre.schmid Signed-off-by: krupa.nagabhushan --- catalog-ui/src/app/utils/component-factory.ts | 1 + 1 file changed, 1 insertion(+) (limited to 'catalog-ui/src/app/utils') diff --git a/catalog-ui/src/app/utils/component-factory.ts b/catalog-ui/src/app/utils/component-factory.ts index 2ff2af983e..f2128cb271 100644 --- a/catalog-ui/src/app/utils/component-factory.ts +++ b/catalog-ui/src/app/utils/component-factory.ts @@ -84,6 +84,7 @@ export class ComponentFactory { oldComponent.csarUUID = csarComponent.csarUUID; oldComponent.csarPackageType = csarComponent.csarPackageType; oldComponent.csarVersion = csarComponent.csarVersion; + oldComponent.csarVersionId = csarComponent.csarVersionId; oldComponent.packageId = csarComponent.packageId; oldComponent.description = csarComponent.description; oldComponent.filterTerm = oldComponent.name + ' ' + oldComponent.description + ' ' + oldComponent.vendorName + ' ' + oldComponent.csarVersion; -- cgit 1.2.3-korg