Fixed execution problems for subflows related to multiple executions and missing execution argument

This commit is contained in:
frikky
2022-01-06 03:11:13 +01:00
parent a900b5aa71
commit c41b4da5f5
13 changed files with 233 additions and 172 deletions
+5 -1
View File
@@ -429,7 +429,11 @@ export const validateJson = (showResult) => {
}
}
//console.log("VALID: ", jsonvalid, result)
if (jsonvalid && typeof result === "number") {
jsonvalid = false
}
//console.log("VALID: ", jsonvalid, result, typeof result)
return {
valid: jsonvalid,
result: result,