#204: Added app creator file upload possibility
This commit is contained in:
@@ -2611,7 +2611,7 @@ const AngularWorkflow = (props) => {
|
||||
const allitems = workflow.actions.concat(workflow.triggers)
|
||||
for (var key in allitems) {
|
||||
const item = allitems[key]
|
||||
if (item.app_name === appName) {
|
||||
if (item.app_name === appName && item.label !== undefined && item.label !== null) {
|
||||
var number = item.label.split("_")
|
||||
if (isNaN(number[-1]) && parseInt(number[number.length-1]) > highest) {
|
||||
highest = number[number.length-1]
|
||||
@@ -7108,6 +7108,9 @@ const AngularWorkflow = (props) => {
|
||||
|
||||
}
|
||||
|
||||
//if (authenticationOption.label === null
|
||||
// defaultValue={}
|
||||
|
||||
return (
|
||||
<div>
|
||||
<DialogContent>
|
||||
|
||||
Reference in New Issue
Block a user