From fee57b0382fbc6c85f374de79babbd38b37146ac Mon Sep 17 00:00:00 2001 From: Samuel Lorch Date: Sun, 23 Apr 2023 19:38:54 +0200 Subject: [PATCH] add missing semicolons --- client/src/pages/index.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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() => {