Added initial hybrid proxy setup
This commit is contained in:
@@ -154,7 +154,7 @@ const Admin = (props) => {
|
||||
// Need to wait because query in ES is too fast
|
||||
setTimeout(() => {
|
||||
getAppAuthentication()
|
||||
}, 500)
|
||||
}, 1000)
|
||||
alert.success("Successfully deleted authentication!")
|
||||
}
|
||||
}),
|
||||
@@ -228,7 +228,7 @@ const Admin = (props) => {
|
||||
.then((responseJson) => {
|
||||
setTimeout(() => {
|
||||
handleGetOrg(org_id)
|
||||
}, 500)
|
||||
}, 1000)
|
||||
})
|
||||
.catch(error => {
|
||||
alert.error("Err: " + error.toString())
|
||||
@@ -356,7 +356,7 @@ const Admin = (props) => {
|
||||
setSelectedUserModalOpen(false)
|
||||
setTimeout(() => {
|
||||
getAppAuthentication()
|
||||
}, 500)
|
||||
}, 1000)
|
||||
}
|
||||
}),
|
||||
)
|
||||
@@ -514,7 +514,7 @@ const Admin = (props) => {
|
||||
setModalOpen(false)
|
||||
setTimeout(() => {
|
||||
getUsers()
|
||||
}, 500)
|
||||
}, 1000)
|
||||
}
|
||||
}),
|
||||
)
|
||||
@@ -549,7 +549,7 @@ const Admin = (props) => {
|
||||
setModalOpen(false)
|
||||
setTimeout(() => {
|
||||
getUsers()
|
||||
}, 500)
|
||||
}, 1000)
|
||||
}
|
||||
}),
|
||||
)
|
||||
|
||||
@@ -308,7 +308,7 @@ const AngularWorkflow = (props) => {
|
||||
}
|
||||
|
||||
if (param.name === "startnode" && outersub.id !== undefined) {
|
||||
console.log("SHOULD SET STARTNODE: ", outersub)
|
||||
console.log("SHOULD SET STARTNODE IN SUBFLOW SELECTION: ", outersub)
|
||||
const innernode = outersub.actions.find(action => action.id === param.value)
|
||||
console.log("FOUND NODE: ", innernode)
|
||||
if (innernode !== undefined && subworkflowStartnode.id !== innernode.id) {
|
||||
|
||||
@@ -531,7 +531,7 @@ const Workflows = (props) => {
|
||||
deleteWorkflow(selectedWorkflowId)
|
||||
setTimeout(() => {
|
||||
getAvailableWorkflows()
|
||||
}, 500)
|
||||
}, 1000)
|
||||
}
|
||||
setDeleteModalOpen(false)
|
||||
}} color="primary">
|
||||
@@ -1491,7 +1491,7 @@ const Workflows = (props) => {
|
||||
// Update :)
|
||||
setTimeout(() => {
|
||||
getAvailableWorkflows()
|
||||
}, 500)
|
||||
}, 1000)
|
||||
setImportLoading(false)
|
||||
} else {
|
||||
alert.info("Successfully changed basic info for workflow")
|
||||
|
||||
Reference in New Issue
Block a user