aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/components/services/AdGuardHome.vue
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/services/AdGuardHome.vue')
-rw-r--r--src/components/services/AdGuardHome.vue4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/components/services/AdGuardHome.vue b/src/components/services/AdGuardHome.vue
index 4c53398..d5b84f6 100644
--- a/src/components/services/AdGuardHome.vue
+++ b/src/components/services/AdGuardHome.vue
@@ -63,12 +63,12 @@ export default {
63 methods: { 63 methods: {
64 fetchStatus: async function () { 64 fetchStatus: async function () {
65 this.status = await this.fetch("/control/status").catch((e) => 65 this.status = await this.fetch("/control/status").catch((e) =>
66 console.log(e) 66 console.log(e),
67 ); 67 );
68 }, 68 },
69 fetchStats: async function () { 69 fetchStats: async function () {
70 this.stats = await this.fetch("/control/stats").catch((e) => 70 this.stats = await this.fetch("/control/stats").catch((e) =>
71 console.log(e) 71 console.log(e),
72 ); 72 );
73 }, 73 },
74 }, 74 },