@geode/opengeodeweb-front 2.0.0-rc.4 → 2.0.0-rc.5

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 +1 -1
package/package.json CHANGED
@@ -18,7 +18,7 @@
18
18
  },
19
19
  "description": "OpenSource Vue/Vuetify framework for web applications",
20
20
  "type": "module",
21
- "version": "2.0.0-rc.4",
21
+ "version": "2.0.0-rc.5",
22
22
  "main": "./nuxt.config.js",
23
23
  "dependencies": {
24
24
  "@kitware/vtk.js": "^28.8.0",
package/stores/viewer.js CHANGED
@@ -10,7 +10,7 @@ export const use_viewer_store = defineStore('viewer', {
10
10
  this.picking_mode = value
11
11
  },
12
12
  async set_picked_point (x, y) {
13
- const response = await get_point_position({ x, y })
13
+ const response = await this.get_point_position({ x, y })
14
14
  const { x: world_x, y: world_y } = response
15
15
  this.picked_point.x = world_x
16
16
  this.picked_point.y = world_y