diff options
author | Bastien Wirtz <bastien.wirtz@gmail.com> | 2023-10-21 14:24:05 +0200 |
---|---|---|
committer | Bastien Wirtz <bastien.wirtz@gmail.com> | 2023-10-21 14:24:05 +0200 |
commit | de4b7e6124254a192c897bdf0070b078a64ee563 (patch) | |
tree | 2517f4e70c56b55515f75b686fd9ea508ef5659c /src/components/services/AdGuardHome.vue | |
parent | ecf664d19b2a46c9d89a9a9c1128e22b7228607a (diff) | |
download | homer-de4b7e6124254a192c897bdf0070b078a64ee563.tar.gz homer-de4b7e6124254a192c897bdf0070b078a64ee563.tar.zst homer-de4b7e6124254a192c897bdf0070b078a64ee563.zip |
Linting updatev23.10.1
Diffstat (limited to 'src/components/services/AdGuardHome.vue')
-rw-r--r-- | src/components/services/AdGuardHome.vue | 4 |
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 | }, |