diff --git a/client/src/pages/network/Interfaces.vue b/client/src/pages/network/Interfaces.vue index 9b66903..ae7f69e 100644 --- a/client/src/pages/network/Interfaces.vue +++ b/client/src/pages/network/Interfaces.vue @@ -40,6 +40,15 @@ async function load(){ loading = false } +async function apply(){ + let res = await apiCall("Network.ApplyInterfaces", {}); + if (res.Error === null) { + console.debug("apply log", res.Data.Log); + } else { + console.debug("error", res); + } +} + onMounted(async() => { load(); }); @@ -48,7 +57,7 @@ onMounted(async() => {