aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/components/services
diff options
context:
space:
mode:
authorBastien Wirtz <bastien.wirtz@gmail.com>2021-09-13 22:03:13 +0200
committerBastien Wirtz <bastien.wirtz@gmail.com>2021-09-13 22:03:13 +0200
commit55c3ea4d92b0c5628ead4475ae7359bbf2cc59c4 (patch)
tree619fbe654b8594fd82550b00746ac6b5890a4d51 /src/components/services
parent33d60aa76a975f26733e45f7652a03088f32c812 (diff)
downloadhomer-55c3ea4d92b0c5628ead4475ae7359bbf2cc59c4.tar.gz
homer-55c3ea4d92b0c5628ead4475ae7359bbf2cc59c4.tar.zst
homer-55c3ea4d92b0c5628ead4475ae7359bbf2cc59c4.zip
Deps updates & lint
Diffstat (limited to 'src/components/services')
-rw-r--r--src/components/services/AdGuardHome.vue4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/components/services/AdGuardHome.vue b/src/components/services/AdGuardHome.vue
index 9238060..19a2f7d 100644
--- a/src/components/services/AdGuardHome.vue
+++ b/src/components/services/AdGuardHome.vue
@@ -53,9 +53,7 @@ export default {
53 fetchStatus: async function () { 53 fetchStatus: async function () {
54 this.status = await fetch(`${this.item.url}/control/status`, { 54 this.status = await fetch(`${this.item.url}/control/status`, {
55 credentials: "include", 55 credentials: "include",
56 }).then( 56 }).then((response) => response.json());
57 (response) => response.json()
58 );
59 }, 57 },
60 }, 58 },
61}; 59};