X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=src%2Fcomponents%2Fservices%2FAdGuardHome.vue;h=d5b84f62d6f162b5f398bb44192fd4ee25ab37ec;hb=de4b7e6124254a192c897bdf0070b078a64ee563;hp=4c5339873f909e980a5fe3c5c3947ad5563bd42a;hpb=ecf664d19b2a46c9d89a9a9c1128e22b7228607a;p=github%2Fbastienwirtz%2Fhomer.git 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 { methods: { fetchStatus: async function () { this.status = await this.fetch("/control/status").catch((e) => - console.log(e) + console.log(e), ); }, fetchStats: async function () { this.stats = await this.fetch("/control/stats").catch((e) => - console.log(e) + console.log(e), ); }, },