diff options
author | Bastien Wirtz <bastien.wirtz@gmail.com> | 2021-09-13 22:03:13 +0200 |
---|---|---|
committer | Bastien Wirtz <bastien.wirtz@gmail.com> | 2021-09-13 22:03:13 +0200 |
commit | 55c3ea4d92b0c5628ead4475ae7359bbf2cc59c4 (patch) | |
tree | 619fbe654b8594fd82550b00746ac6b5890a4d51 /src/components/services | |
parent | 33d60aa76a975f26733e45f7652a03088f32c812 (diff) | |
download | homer-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.vue | 4 |
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 | }; |