Added more links and pointing to getting started page

This commit is contained in:
frikky
2022-02-06 19:56:02 +01:00
parent d3ec5c4ffa
commit 546f0bd841
3 changed files with 69 additions and 19 deletions
+5 -1
View File
@@ -1515,7 +1515,7 @@ const AngularWorkflow = (defaultprops) => {
})
.catch((error) => {
setAppsLoaded(true)
alert.error("App loading error: ", error.toString());
alert.error("App loading error: "+error.toString());
});
};
@@ -3085,6 +3085,7 @@ const AngularWorkflow = (defaultprops) => {
}
}
if (
nodedata.parameters !== undefined &&
nodedata.parameters !== null &&
@@ -5134,6 +5135,8 @@ const AngularWorkflow = (defaultprops) => {
// AUTHENTICATION
if (app.authentication.required) {
console.log("App auth is required!")
// Setup auth here :)
const authenticationOptions = [];
var findAuthId = "";
@@ -5145,6 +5148,7 @@ const AngularWorkflow = (defaultprops) => {
findAuthId = newAppData.authentication_id;
}
console.log("Found auth: ", findAuthId)
var tmpAuth = JSON.parse(JSON.stringify(appAuthentication));
for (var key in tmpAuth) {
var item = tmpAuth[key];