aboutsummaryrefslogtreecommitdiffstats
path: root/cds-ui/designer-client/src/app/modules/feature-modules/packages/package-creation/template-mapping/template-mapping.component.ts
diff options
context:
space:
mode:
authorAhmed Abbas <ahmad.helmy@orange.com>2020-02-02 01:53:54 +0200
committerAhmed Abbas <ahmad.helmy@orange.com>2020-02-02 01:53:54 +0200
commit3da10ae82ee1810e0fb995141dae5495eff28176 (patch)
treec742fd1b5ecc728615ecfec554a6b9c354bc4e13 /cds-ui/designer-client/src/app/modules/feature-modules/packages/package-creation/template-mapping/template-mapping.component.ts
parent22517f0717ba13758b16dc4c9f08b2e5c1333afd (diff)
add template and mapping page skeleton in designer client
Issue-ID: CCSDK-2065 Signed-off-by: Ahmed Abbas <ahmad.helmy@orange.com> Change-Id: Icbd3240c8043449a47d72bf70c76397725ffd2ba
Diffstat (limited to 'cds-ui/designer-client/src/app/modules/feature-modules/packages/package-creation/template-mapping/template-mapping.component.ts')
-rw-r--r--cds-ui/designer-client/src/app/modules/feature-modules/packages/package-creation/template-mapping/template-mapping.component.ts5
1 files changed, 5 insertions, 0 deletions
diff --git a/cds-ui/designer-client/src/app/modules/feature-modules/packages/package-creation/template-mapping/template-mapping.component.ts b/cds-ui/designer-client/src/app/modules/feature-modules/packages/package-creation/template-mapping/template-mapping.component.ts
index 6615a2d2c..7e9ae1639 100644
--- a/cds-ui/designer-client/src/app/modules/feature-modules/packages/package-creation/template-mapping/template-mapping.component.ts
+++ b/cds-ui/designer-client/src/app/modules/feature-modules/packages/package-creation/template-mapping/template-mapping.component.ts
@@ -6,10 +6,15 @@ import { Component, OnInit } from '@angular/core';
styleUrls: ['./template-mapping.component.css']
})
export class TemplateMappingComponent implements OnInit {
+ creationView = false;
constructor() { }
ngOnInit() {
}
+ openCreationView() {
+ this.creationView = true;
+ }
+
}