Added initial hybrid proxy setup

This commit is contained in:
frikky
2021-06-07 10:56:08 +02:00
parent 8844544d53
commit 60eeebb210
5 changed files with 39 additions and 13 deletions
+5 -5
View File
@@ -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)
}
}),
)
+1 -1
View File
@@ -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) {
+2 -2
View File
@@ -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")