From b64c848cf7168fabf953a5c6a98319bd39c88102 Mon Sep 17 00:00:00 2001 From: ShaabanEltanany Date: Sun, 20 Sep 2020 16:04:36 +0200 Subject: adding import package basic functionalities Issue-ID: CCSDK-2842 Signed-off-by: ShaabanEltanany Change-Id: I62a260aca9274900ed32706d79efbb09590e20b1 --- .../configuration-dashboard/configuration-dashboard.component.ts | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'cds-ui/designer-client/src/app/modules/feature-modules/packages/configuration-dashboard') diff --git a/cds-ui/designer-client/src/app/modules/feature-modules/packages/configuration-dashboard/configuration-dashboard.component.ts b/cds-ui/designer-client/src/app/modules/feature-modules/packages/configuration-dashboard/configuration-dashboard.component.ts index 449312f99..2b0521bb2 100644 --- a/cds-ui/designer-client/src/app/modules/feature-modules/packages/configuration-dashboard/configuration-dashboard.component.ts +++ b/cds-ui/designer-client/src/app/modules/feature-modules/packages/configuration-dashboard/configuration-dashboard.component.ts @@ -267,6 +267,10 @@ export class ConfigurationDashboardComponent extends ComponentCanDeactivate impl goToDesignerMode(id) { // this.designerService.setActionName(this.customActionName); + this.packageCreationStore.state$.subscribe(cba => { + console.log(cba); + sessionStorage.setItem('cba', this.packageCreationUtils.transformToJson(cba)); + }); this.router.navigate(['/packages/designer', id, {actionName: this.customActionName}]); } -- cgit 1.2.3-korg