@geode/opengeodeweb-front 10.30.0-rc.6 → 10.30.0-rc.7
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/app/stores/app.js +1 -1
- package/package.json +1 -1
package/app/stores/app.js
CHANGED
|
@@ -274,7 +274,7 @@ export const useAppStore = defineStore("app", () => {
|
|
|
274
274
|
}
|
|
275
275
|
const is_busy = computed(() => request_counter.value > 0);
|
|
276
276
|
|
|
277
|
-
const projectFolderPath = ref("");
|
|
277
|
+
const projectFolderPath = ref(isCloudMode() ? "/project" : "");
|
|
278
278
|
function createProjectFolder() {
|
|
279
279
|
const { PROJECT } = useRuntimeConfig().public;
|
|
280
280
|
const schema = {
|
package/package.json
CHANGED