@geode/opengeodeweb-front 0.0.16 → 0.0.17

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.
@@ -19,17 +19,15 @@
19
19
  const props = defineProps({
20
20
  route_prefix: { type: String, required: true }
21
21
  })
22
- const { tool_route } = props
22
+ const { route_prefix } = props
23
23
 
24
24
  const cloud_store = use_cloud_store()
25
25
  const { is_cloud_running } = storeToRefs(cloud_store)
26
26
 
27
-
28
27
  const packages_versions = ref([])
29
28
 
30
29
  async function get_packages_versions () {
31
- const route = `${tool_route}/versions`
32
- await api_fetch(route, { method: 'GET' }, {
30
+ await api_fetch(`${route_prefix}/versions`, { method: 'GET' }, {
33
31
  'response_function': (response) => {
34
32
  packages_versions.value = response._data.versions
35
33
  }
package/package.json CHANGED
@@ -15,7 +15,7 @@
15
15
  },
16
16
  "description": "OpenSource Vue/Vuetify framework for web applications",
17
17
  "type": "module",
18
- "version": "0.0.16",
18
+ "version": "0.0.17",
19
19
  "main": "./nuxt.config.js",
20
20
  "dependencies": {
21
21
  "@mdi/font": "^7.2.96",