Added execution image
This commit is contained in:
@@ -798,7 +798,9 @@ const AngularWorkflow = (props) => {
|
||||
break
|
||||
} else if (workflow.branches[key].destination_id === edge.target && workflow.branches[key].source_id === edge.source) {
|
||||
// Checks if NOT trigger
|
||||
if (workflow.triggers !== undefined && workflow.triggers.find(data => data.id === workflow.branches[key].source_id).length === 0) {
|
||||
//workflow.triggers.find(data => data.id === workflow.branches[key].source_id).length === 0)
|
||||
const triggercheck = workflow.triggers.find(data => data.id === workflow.branches[key].source_id)
|
||||
if (workflow.triggers !== undefined && triggercheck !== undefined && triggercheck.length === 0) {
|
||||
alert.error("That pointer already exists")
|
||||
event.target.remove()
|
||||
}
|
||||
|
||||
+1
-1
@@ -39,7 +39,7 @@ import { positions, Provider } from "react-alert";
|
||||
|
||||
// Testing - localhost
|
||||
//const globalUrl = "http://192.168.3.6:5001"
|
||||
//console.log("HOST: ", process.env)
|
||||
console.log("HOST: ", process.env)
|
||||
|
||||
|
||||
// Production - backend proxy forwarding in nginx
|
||||
|
||||
Reference in New Issue
Block a user