diff options
-rw-r--r-- | cds-ui/designer-client/src/app/modules/feature-modules/resource-dictionary/model/metaData.model.ts | 6 |
1 files changed, 3 insertions, 3 deletions
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 89a83a1ea..63e18313e 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 @@ -19,20 +19,20 @@ import { JsonObject, JsonProperty } from 'json2typescript'; * limitations under the License. * ============LICENSE_END========================================================= */ -@JsonObject() +@JsonObject export class MetaData { @JsonProperty('name') public name: string; public tags: string; @JsonProperty('updated-by') - public updatedBy: string; + public ['updated-by'] = 'ahmed.eldeeb.ext@orange.com'; public property: Property; public sources: any; constructor() { this.name = ''; this.tags = ''; - this.updatedBy = ''; + // this.updatedBy = ''; this.property = new Property(); this.sources = {}; } |