Disabled magic output by default again

This commit is contained in:
frikky
2022-02-11 02:27:20 +01:00
parent d71f85d29d
commit 0d27959a2d
2 changed files with 3 additions and 1 deletions
+2
View File
@@ -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) {
+1 -1
View File
@@ -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,