Migrated docker images to be versioned

This commit is contained in:
frikky
2020-11-17 15:54:42 +01:00
parent ae39da8ffd
commit c7a626bdbd
10 changed files with 93 additions and 55 deletions
+7 -4
View File
@@ -1074,10 +1074,13 @@ const AngularWorkflow = (props) => {
// FIXME - do this for both actions and other types?
targetnode = workflow.triggers.findIndex(data => data.id === edge.target)
if (targetnode !== -1) {
alert.error("Can't have triggers as target of branch")
event.target.remove()
found = true
break
if (workflow.triggers[targetnode].app_name !== "User Input") {
alert.error("Can't have triggers as target of branch")
event.target.remove()
found = true
break
}
}
}
}