diff --git a/frontend/src/components/ParsedAction.jsx b/frontend/src/components/ParsedAction.jsx index 78b531a6..e5a88b7a 100644 --- a/frontend/src/components/ParsedAction.jsx +++ b/frontend/src/components/ParsedAction.jsx @@ -489,6 +489,7 @@ const ParsedAction = (props) => { } var exampledata = item.example === undefined || item.example === null ? "" : item.example; + console.log("EXAMPLE: ", exampledata) // Find previous execution and their variables //exampledata === "" && if (workflowExecutions.length > 0) { @@ -512,6 +513,7 @@ const ParsedAction = (props) => { if (foundResult.result !== undefined && foundResult.result !== null) { foundResult = foundResult.result } + console.log("VALID RESULT: ", foundResult) const valid = validateJson(foundResult) if (valid.valid) { diff --git a/frontend/src/views/AngularWorkflow.jsx b/frontend/src/views/AngularWorkflow.jsx index 335f8c89..e8390813 100644 --- a/frontend/src/views/AngularWorkflow.jsx +++ b/frontend/src/views/AngularWorkflow.jsx @@ -5320,7 +5320,7 @@ const AngularWorkflow = (defaultprops) => { parameters: parameters, isStartNode: false, large_image: app.large_image, - run_magic_output: true, + run_magic_output: false, authentication: [], execution_variable: undefined, example: example,