@geode/opengeodeweb-front 8.0.2-rc.2 → 8.0.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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/stores/viewer.js +3 -3
package/package.json CHANGED
@@ -35,7 +35,7 @@
35
35
  },
36
36
  "description": "OpenSource Vue/Vuetify framework for web applications",
37
37
  "type": "module",
38
- "version": "8.0.2-rc.2",
38
+ "version": "8.0.2",
39
39
  "main": "./nuxt.config.js",
40
40
  "dependencies": {
41
41
  "@geode/opengeodeweb-back": "4.2.1",
package/stores/viewer.js CHANGED
@@ -88,16 +88,16 @@ export const use_viewer_store = defineStore("viewer", {
88
88
  return new Promise((resolve, reject) => {
89
89
  clientToConnect
90
90
  .connect(config)
91
- .then(async (validClient) => {
91
+ .then((validClient) => {
92
92
  connectImageStream(validClient.getConnection().getSession())
93
93
  this.client = validClient
94
94
  clientToConnect.endBusy()
95
95
 
96
96
  // Now that the client is ready let's setup the server for us
97
- await viewer_call({
97
+ viewer_call({
98
98
  schema: schemas.opengeodeweb_viewer.create_visualization,
99
99
  })
100
- await viewer_call({
100
+ viewer_call({
101
101
  schema: schemas.opengeodeweb_viewer.reset,
102
102
  })
103
103
  this.is_running = true