add missing semicolons

This commit is contained in:
Samuel Lorch 2023-04-23 19:38:54 +02:00
parent 214117f245
commit fee57b0382

View file

@ -5,7 +5,7 @@ let links = $ref([]);
let loading = $ref(false); let loading = $ref(false);
async function load(){ async function load(){
loading = true loading = true;
let res = await apiCall("Network.GetLinks", {}); let res = await apiCall("Network.GetLinks", {});
if (res.Error === null) { if (res.Error === null) {
console.debug("links", res.Data.Links); console.debug("links", res.Data.Links);
@ -13,7 +13,7 @@ async function load(){
} else { } else {
console.debug("error", res); console.debug("error", res);
} }
loading = false loading = false;
} }
onMounted(async() => { onMounted(async() => {