From fc5fa67b192b25a6507212cf1b3082134c6cb2a6 Mon Sep 17 00:00:00 2001 From: Ahmedeldeeb50 Date: Mon, 18 Jan 2021 14:26:22 +0200 Subject: create dictionary resource from metadata tab enable the user to add source from the UI Issue-ID: CCSDK-3083 Signed-off-by: Ahmedeldeeb50 Change-Id: I1f656fe303863373723a1285d5e1a473a9a47dec --- .../modules/feature-modules/resource-dictionary/model/metaData.model.ts | 2 ++ 1 file changed, 2 insertions(+) (limited to 'cds-ui/designer-client/src/app/modules/feature-modules/resource-dictionary/model/metaData.model.ts') diff --git a/cds-ui/designer-client/src/app/modules/feature-modules/resource-dictionary/model/metaData.model.ts b/cds-ui/designer-client/src/app/modules/feature-modules/resource-dictionary/model/metaData.model.ts index 92e6bce43..89a83a1ea 100644 --- a/cds-ui/designer-client/src/app/modules/feature-modules/resource-dictionary/model/metaData.model.ts +++ b/cds-ui/designer-client/src/app/modules/feature-modules/resource-dictionary/model/metaData.model.ts @@ -27,12 +27,14 @@ export class MetaData { @JsonProperty('updated-by') public updatedBy: string; public property: Property; + public sources: any; constructor() { this.name = ''; this.tags = ''; this.updatedBy = ''; this.property = new Property(); + this.sources = {}; } } -- cgit 1.2.3-korg