Fill download page

Add Library Selector
This commit is contained in:
2025-10-12 02:21:44 +02:00
parent 25b7ef5495
commit f0bacc86bd
6 changed files with 102 additions and 23 deletions

View File

@@ -45,7 +45,7 @@ const apiUrl = ref(config.public.openFetch.api.baseURL);
const reloading = ref(false);
const setUrl = async () => {
reloading.value = true;
config.public.openFetch.api.baseURL = apiUrl.value;
config.public.openFetch.api.baseURL = apiUrl.value.endsWith('/') ? apiUrl.value : apiUrl.value + '/';
await refreshNuxtData();
reloading.value = false;
};