From: Bastien Wirtz Date: Tue, 8 Dec 2020 06:53:55 +0000 (-0800) Subject: Apply lint fix X-Git-Tag: v20.12.19~6 X-Git-Url: https://git.immae.eu/?a=commitdiff_plain;h=12063dafef3d9028345801c7b17c1dabcc1113b0;p=github%2Fbastienwirtz%2Fhomer.git Apply lint fix --- diff --git a/src/components/services/AdGuardHome.vue b/src/components/services/AdGuardHome.vue index 3ce56dd..9c6eb34 100644 --- a/src/components/services/AdGuardHome.vue +++ b/src/components/services/AdGuardHome.vue @@ -18,7 +18,11 @@

{{ item.name }}

{{ item.subtitle }}

-
+
{{ status.protection_enabled }}
@@ -47,9 +51,9 @@ export default { }, methods: { fetchStatus: async function () { - this.status = await fetch(`${this.item.url}/control/status`).then((response) => - response.json() - ); + this.status = await fetch( + `${this.item.url}/control/status` + ).then((response) => response.json()); }, }, };