From 0154d5e26e4d9998f45d20349617a1ce25ada421 Mon Sep 17 00:00:00 2001 From: Swati Rawal Date: Tue, 8 Oct 2024 14:35:26 +0100 Subject: [PATCH] fixed the custom inputs for return --- src/boilerplate/orchestration/javascript/raw/toOrchestration.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/boilerplate/orchestration/javascript/raw/toOrchestration.ts b/src/boilerplate/orchestration/javascript/raw/toOrchestration.ts index 2340578d..2c5390f5 100644 --- a/src/boilerplate/orchestration/javascript/raw/toOrchestration.ts +++ b/src/boilerplate/orchestration/javascript/raw/toOrchestration.ts @@ -897,7 +897,7 @@ export const OrchestrationCodeBoilerPlate: any = (node: any) => { if(node.returnInputs[0]) { node.returnInputs.forEach((input: any) => { - input == 'true' ? returnInputs.push(`1`) : input == 'false' ? returnInputs.push(`0`) : returnInputs.push(input); + input == 'true' ? returnInputs.push(`1`) : input == 'false' ? returnInputs.push(`0`) : returnInputs.push(input+'.integer'); }) }