Skip to content

Commit

Permalink
fixed the custom inputs for return
Browse files Browse the repository at this point in the history
  • Loading branch information
SwatiEY committed Oct 8, 2024
1 parent 546c8b0 commit 0154d5e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -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');

})
}
Expand Down

0 comments on commit 0154d5e

Please sign in to comment.