aboutsummaryrefslogtreecommitdiffstats
path: root/catalog-ui/src/app/models
diff options
context:
space:
mode:
authordavsad <david.sadlier@est.tech>2021-09-23 16:59:57 +0100
committerMichael Morris <michael.morris@est.tech>2021-10-12 08:50:06 +0000
commit0db74a648b91d5affb32be5b5b3fa54e150710bb (patch)
tree2b7e21dc303f6c1b4c5b177baffb91763bc3c694 /catalog-ui/src/app/models
parentc65452a519e4c64fe23e42251d8237ada676f81c (diff)
Add a display name for the category metadataKeys entries
Issue-ID: SDC-3737 Signed-off-by: davsad <david.sadlier@est.tech> Change-Id: Ia9547f02267fd380feeef6be6af10beadd30457b
Diffstat (limited to 'catalog-ui/src/app/models')
-rw-r--r--catalog-ui/src/app/models/category.ts1
1 files changed, 1 insertions, 0 deletions
diff --git a/catalog-ui/src/app/models/category.ts b/catalog-ui/src/app/models/category.ts
index 7819aae2f1..502020a57b 100644
--- a/catalog-ui/src/app/models/category.ts
+++ b/catalog-ui/src/app/models/category.ts
@@ -51,6 +51,7 @@ export interface IGroup extends ICategoryBase {
export interface IMetadataKey {
name:string;
+ displayName:string;
mandatory:boolean;
validValues: string[];
defaultValue: string;