@geode/opengeodeweb-front 9.0.2 → 9.0.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
package/stores/infra.js
CHANGED
|
@@ -61,7 +61,6 @@ export const use_infra_store = defineStore("infra", {
|
|
|
61
61
|
viewer_store.port,
|
|
62
62
|
)
|
|
63
63
|
viewer_store.$patch({ default_local_port: viewer_port })
|
|
64
|
-
return
|
|
65
64
|
} else {
|
|
66
65
|
const { data, error } = await useFetch(this.lambda_url, {
|
|
67
66
|
method: "POST",
|
|
@@ -69,12 +68,13 @@ export const use_infra_store = defineStore("infra", {
|
|
|
69
68
|
if (data.value !== null) {
|
|
70
69
|
this.ID = data.value.ID
|
|
71
70
|
localStorage.setItem("ID", data.value.ID)
|
|
72
|
-
geode_store.$patch({ is_running: true })
|
|
73
|
-
return geode_store.ping_task()
|
|
74
71
|
} else {
|
|
75
72
|
feedback_store.server_error = true
|
|
73
|
+
return
|
|
76
74
|
}
|
|
77
75
|
}
|
|
76
|
+
geode_store.$patch({ is_running: true })
|
|
77
|
+
return geode_store.ping_task()
|
|
78
78
|
},
|
|
79
79
|
},
|
|
80
80
|
})
|
|
File without changes
|
|
File without changes
|