mirror of
https://github.com/speatzle/nfsense.git
synced 2025-05-10 18:38:22 +00:00
add missing semicolons
This commit is contained in:
parent
214117f245
commit
fee57b0382
1 changed files with 2 additions and 2 deletions
|
@ -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() => {
|
||||
|
|
Loading…
Add table
Reference in a new issue