@geode/opengeodeweb-front 9.14.1-rc.1 → 9.14.1-rc.2

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
@@ -39,7 +39,7 @@
39
39
  },
40
40
  "description": "OpenSource Vue/Nuxt/Pinia/Vuetify framework for web applications",
41
41
  "type": "module",
42
- "version": "9.14.1-rc.1",
42
+ "version": "9.14.1-rc.2",
43
43
  "main": "./nuxt.config.js",
44
44
  "dependencies": {
45
45
  "@geode/opengeodeweb-back": "next",
@@ -12,7 +12,10 @@ async function importWorkflow(files) {
12
12
  console.log({ filename }, { geode_object })
13
13
  promise_array.push(importFile(filename, geode_object))
14
14
  }
15
- return Promise.all(promise_array)
15
+ const results = await Promise.all(promise_array)
16
+ const hybridViewerStore = useHybridViewerStore()
17
+ hybridViewerStore.remoteRender()
18
+ return results
16
19
  }
17
20
 
18
21
  function buildImportItemFromPayloadApi(value, geode_object) {
@@ -55,7 +58,6 @@ async function importItem(item) {
55
58
  }
56
59
 
57
60
  await dataStyleStore.applyDefaultStyle(item.id)
58
- hybridViewerStore.remoteRender()
59
61
  return item.id
60
62
  }
61
63