aboutsummaryrefslogtreecommitdiffstats
path: root/catalog-ui
diff options
context:
space:
mode:
Diffstat (limited to 'catalog-ui')
-rw-r--r--catalog-ui/src/app/models/artifacts.ts2
-rw-r--r--catalog-ui/src/app/utils/constants.ts1
2 files changed, 2 insertions, 1 deletions
diff --git a/catalog-ui/src/app/models/artifacts.ts b/catalog-ui/src/app/models/artifacts.ts
index 7b93470de3..e290dc624e 100644
--- a/catalog-ui/src/app/models/artifacts.ts
+++ b/catalog-ui/src/app/models/artifacts.ts
@@ -116,7 +116,7 @@ export class ArtifactModel {
};
public isGenericBrowseable = ():boolean => {
- return this.artifactType == ArtifactType.VES_EVENTS;
+ return this.artifactType === ArtifactType.VES_EVENTS || this.artifactType === ArtifactType.PM_DICTIONARY;
};
public toJSON = ():any => {
diff --git a/catalog-ui/src/app/utils/constants.ts b/catalog-ui/src/app/utils/constants.ts
index e82322e0de..8ad8db2b69 100644
--- a/catalog-ui/src/app/utils/constants.ts
+++ b/catalog-ui/src/app/utils/constants.ts
@@ -106,6 +106,7 @@ export class ArtifactType {
static HEAT_VOL = "HEAT_VOL";
static HEAT_NET = "HEAT_NET";
static VF_LICENSE = "VF_LICENSE";
+ static PM_DICTIONARY = "PM_DICTIONARY";
static VENDOR_LICENSE = "VENDOR_LICENSE";
static THIRD_PARTY_RESERVED_TYPES = {
WORKFLOW: "WORKFLOW",