aboutsummaryrefslogtreecommitdiffstats
path: root/catalog-ui/src/app/utils
diff options
context:
space:
mode:
authorkooper <sergey.sachkov@est.tech>2019-03-15 16:58:20 +0000
committerOren Kleks <orenkle@amdocs.com>2019-03-20 09:46:48 +0000
commitf4dd8f797c68740b968c1abdda390f24224d4424 (patch)
treef44feae8680a3064b566772f78c1cb328ebcbab1 /catalog-ui/src/app/utils
parent54b96133b33b3bf55e9670ed2a8c89996ac413b9 (diff)
Display PNF/VNF Type for PNF (frontend)
Change-Id: I5f1ac23776976d16f8c2258f82b8dfe6aa925037 Issue-ID: SDC-2158 Signed-off-by: kooper <sergey.sachkov@est.tech>
Diffstat (limited to 'catalog-ui/src/app/utils')
-rw-r--r--catalog-ui/src/app/utils/component-factory.ts1
1 files changed, 1 insertions, 0 deletions
diff --git a/catalog-ui/src/app/utils/component-factory.ts b/catalog-ui/src/app/utils/component-factory.ts
index bdcfc2cc2d..2b134bd2e7 100644
--- a/catalog-ui/src/app/utils/component-factory.ts
+++ b/catalog-ui/src/app/utils/component-factory.ts
@@ -135,6 +135,7 @@ export class ComponentFactory {
newResource.csarVersion = csar.version;
newResource.packageId = csar.packageId;
newResource.description = csar.description;
+ newResource.resourceType = csar.resourceType;
newResource.filterTerm = newResource.name + ' ' + newResource.description + ' ' + newResource.vendorName + ' ' + newResource.csarVersion
return newResource;
};