diff --git a/backend/go-app/main.go b/backend/go-app/main.go
index accb4f44..4527ada4 100644
--- a/backend/go-app/main.go
+++ b/backend/go-app/main.go
@@ -5796,6 +5796,7 @@ func handleAppZipUpload(resp http.ResponseWriter, request *http.Request) {
panic(err)
}
+ // https://github.com/alexmullins/zip/blob/master/example_test.go
for _, item := range zipdata.File {
log.Printf("\n\nName: %s\n\n", item.FileHeader.Name)
log.Printf("item: %#v", item)
diff --git a/frontend/src/views/AngularWorkflow.jsx b/frontend/src/views/AngularWorkflow.jsx
index ac492fd9..0264a862 100644
--- a/frontend/src/views/AngularWorkflow.jsx
+++ b/frontend/src/views/AngularWorkflow.jsx
@@ -1615,7 +1615,7 @@ const AngularWorkflow = (defaultprops) => {
}
if (responseJson.public) {
- alert.info("This workflow is public. Save the workflow to start using it.");
+ alert.info("This workflow is public. Save the workflow to use it in your organization.");
console.log("RESP: ", responseJson)
if (Object.getOwnPropertyNames(creatorProfile).length === 0) {
@@ -2445,7 +2445,10 @@ const AngularWorkflow = (defaultprops) => {
//var newapps = JSON.parse(JSON.stringify(apps))
var newapps = apps
- console.log(event.target.data())
+ if (apps === null || apps === undefined || apps.length === 0) {
+ newapps = filteredApps
+ }
+
const curapp = newapps.find(
(a) =>
a.name === curaction.app_name &&
@@ -2454,9 +2457,8 @@ const AngularWorkflow = (defaultprops) => {
a.loop_versions.includes(curaction.app_version)))
);
if (!curapp || curapp === undefined) {
- alert.error(
- `App ${curaction.app_name}:${curaction.app_version} not found. Is it activated?`
- );
+ console.log("APPS: ", newapps)
+ //alert.error(`App ${curaction.app_name}:${curaction.app_version} not found. Is it activated?`);
const tmpapp = {
name: curaction.app_name,
@@ -3601,7 +3603,7 @@ const AngularWorkflow = (defaultprops) => {
// FIXME: Don't allow multiple in cloud yet. Cloud -> Onprem isn't stable.
if (isCloud) {
console.log("Envs: ", responseJson)
- if (responseJson.length > 0) {
+ if (responseJson !== undefined && responseJson !== null && responseJson.length > 0) {
setEnvironments(responseJson);
} else {
setEnvironments([{ Name: "Cloud", Type: "cloud" }]);
@@ -11025,7 +11027,7 @@ const AngularWorkflow = (defaultprops) => {