summaryrefslogtreecommitdiffstats
path: root/cds-ui/designer-client/src/app/modules/feature-modules/packages/package-creation/template.store.ts
diff options
context:
space:
mode:
authorAhmed <ahmed.eldeeb.ext@orange.com>2020-03-02 12:11:29 +0200
committerAhmed <ahmed.eldeeb.ext@orange.com>2020-03-02 14:23:11 +0200
commit6edf1f95883e230bcddb7dfbcbafc6d7527a5ce7 (patch)
tree5bd429d618d6faa7d4d88bc6ab504e5303955e1f /cds-ui/designer-client/src/app/modules/feature-modules/packages/package-creation/template.store.ts
parente3d773843a5672f7d9051c68d969b95f15a9033e (diff)
Display Mapping result in view table.
Update Modals Issue-ID: CCSDK-2065 Signed-off-by: Ahmed <ahmed.eldeeb.ext@orange.com> Change-Id: Ifb0f2223cded8b54f13aa600186631f685cd6d02
Diffstat (limited to 'cds-ui/designer-client/src/app/modules/feature-modules/packages/package-creation/template.store.ts')
-rw-r--r--cds-ui/designer-client/src/app/modules/feature-modules/packages/package-creation/template.store.ts7
1 files changed, 5 insertions, 2 deletions
diff --git a/cds-ui/designer-client/src/app/modules/feature-modules/packages/package-creation/template.store.ts b/cds-ui/designer-client/src/app/modules/feature-modules/packages/package-creation/template.store.ts
index b3a487bdc..9c8775514 100644
--- a/cds-ui/designer-client/src/app/modules/feature-modules/packages/package-creation/template.store.ts
+++ b/cds-ui/designer-client/src/app/modules/feature-modules/packages/package-creation/template.store.ts
@@ -19,19 +19,22 @@ limitations under the License.
============LICENSE_END============================================
*/
-import {Injectable} from '@angular/core';
+import { Injectable } from '@angular/core';
-import {Store} from '../../../../common/core/stores/Store';
+import { Store } from '../../../../common/core/stores/Store';
export class TemplateInfo {
fileName: string;
fileContent: string;
+ type: string;
+ mapping = [];
constructor() {
this.fileName = '';
this.fileContent = '';
+ this.type = '';
}