Skip to content

Commit 71cd2ab

Browse files
package version
1 parent 2deb710 commit 71cd2ab

File tree

2 files changed

+3
-5
lines changed

2 files changed

+3
-5
lines changed

components/PackagesVersions.vue

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,17 +19,15 @@
1919
const props = defineProps({
2020
route_prefix: { type: String, required: true }
2121
})
22-
const { tool_route } = props
22+
const { route_prefix } = props
2323
2424
const cloud_store = use_cloud_store()
2525
const { is_cloud_running } = storeToRefs(cloud_store)
2626
27-
2827
const packages_versions = ref([])
2928
3029
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' }, {
3331
'response_function': (response) => {
3432
packages_versions.value = response._data.versions
3533
}

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
},
1616
"description": "OpenSource Vue/Vuetify framework for web applications",
1717
"type": "module",
18-
"version": "0.0.15",
18+
"version": "0.0.16",
1919
"main": "./nuxt.config.js",
2020
"dependencies": {
2121
"@mdi/font": "^7.2.96",

0 commit comments

Comments
 (0)