From 83221b2423060db32826065938edeebb5680b30f Mon Sep 17 00:00:00 2001 From: AhmedEldeeb50 Date: Sat, 27 Jun 2020 12:45:17 +0200 Subject: Fix template&mapping in view/create Issue-ID: CCSDK-2450 Signed-off-by: AhmedEldeeb50 Change-Id: If7f08f4638b5574bb5d79caa062cb12b4141be10 --- .../package-creation/template-mapping/template-mapping.component.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'cds-ui/designer-client/src/app/modules/feature-modules/packages/package-creation/template-mapping') 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 470cf27a0..341d29f66 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 @@ -26,7 +26,9 @@ export class TemplateMappingComponent implements OnInit { this.creationView = true; this.listView = false; console.log('URL contains Id'); - this.sharedService.enableEdit(); + if (this.pakcageStore.istemplateExist()) { + this.sharedService.enableEdit(); + } } else { console.log('Create mode'); this.pakcageStore.clear(); -- cgit 1.2.3-korg