aboutsummaryrefslogtreecommitdiffstats
path: root/cds-ui/designer-client/src/app/modules/feature-modules/packages/designer/designer.store.ts
diff options
context:
space:
mode:
authorShaabanEltanany <shaaban.eltanany.ext@orange.com>2020-10-21 10:08:19 +0200
committerShaabanEltanany <shaaban.eltanany.ext@orange.com>2020-10-21 11:30:30 +0200
commita03d4f6e227d1dbe9f1fa79365f4c6da73f609d9 (patch)
treeebfcfbd52925594d653b9e2a3c5ad31701089031 /cds-ui/designer-client/src/app/modules/feature-modules/packages/designer/designer.store.ts
parent83c0cd2c078f89a386701b7f8e680fd3fc70ecfd (diff)
fixing forming cba package definition
Issue-ID: CCSDK-2928 Signed-off-by: ShaabanEltanany <shaaban.eltanany.ext@orange.com> Change-Id: If45b35e9077246faac7490291879df419e0d5ff5
Diffstat (limited to 'cds-ui/designer-client/src/app/modules/feature-modules/packages/designer/designer.store.ts')
-rw-r--r--cds-ui/designer-client/src/app/modules/feature-modules/packages/designer/designer.store.ts4
1 files changed, 3 insertions, 1 deletions
diff --git a/cds-ui/designer-client/src/app/modules/feature-modules/packages/designer/designer.store.ts b/cds-ui/designer-client/src/app/modules/feature-modules/packages/designer/designer.store.ts
index 923d59e91..37fc64051 100644
--- a/cds-ui/designer-client/src/app/modules/feature-modules/packages/designer/designer.store.ts
+++ b/cds-ui/designer-client/src/app/modules/feature-modules/packages/designer/designer.store.ts
@@ -146,7 +146,9 @@ export class DesignerStore extends Store<DesignerDashboardState> {
}
setInputsToSpecificWorkflow(inputs: Map<string, string>) {
- const mapOfWorkflows = this.state.template.workflows;
+ /* tslint:disable:no-string-literal */
+ let mapOfWorkflows = this.state.template.workflows['Action1']['steps'];
+ mapOfWorkflows += inputs;
/*mapOfWorkflows.forEach(((value, key) => {
if (value.includes('resource-assignment')) {
value += inputs;