diff --git a/client/src/pages/index.vue b/client/src/pages/index.vue index 2bc6b18..a9ec1b2 100644 --- a/client/src/pages/index.vue +++ b/client/src/pages/index.vue @@ -5,7 +5,7 @@ let links = $ref([]); let loading = $ref(false); async function load(){ - loading = true + loading = true; let res = await apiCall("Network.GetLinks", {}); if (res.Error === null) { console.debug("links", res.Data.Links); @@ -13,7 +13,7 @@ async function load(){ } else { console.debug("error", res); } - loading = false + loading = false; } onMounted(async() => {