Initial work on moving domain view to vue

This commit is contained in:
Johannes Zellner
2025-01-27 22:20:26 +01:00
parent 42ce3cb405
commit 70b15d128a
12 changed files with 474 additions and 13 deletions
+1 -1
View File
@@ -46,7 +46,7 @@ const servicesArray = computed(() => {
async function refresh(id) {
const [error, result] = await servicesModel.get(id);
if (error) console.error(error);
if (error) return console.error(error);
services[id] = result;
services[id].id = id;