aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/components/services/UptimeKuma.vue
diff options
context:
space:
mode:
authorBastien Wirtz <bastien.wirtz@gmail.com>2022-05-29 09:46:05 +0200
committerBastien Wirtz <bastien.wirtz@gmail.com>2022-05-29 09:46:05 +0200
commit95d73348e5dd8fd0fbb1b6747c58b346ecf772ad (patch)
treed60d4cd006d12d43871c0069fa3de6aefff3befe /src/components/services/UptimeKuma.vue
parentd4001281d926bf3b004f1af5f9c0eeacee07325e (diff)
downloadhomer-95d73348e5dd8fd0fbb1b6747c58b346ecf772ad.tar.gz
homer-95d73348e5dd8fd0fbb1b6747c58b346ecf772ad.tar.zst
homer-95d73348e5dd8fd0fbb1b6747c58b346ecf772ad.zip
Updates
Diffstat (limited to 'src/components/services/UptimeKuma.vue')
-rw-r--r--src/components/services/UptimeKuma.vue4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/components/services/UptimeKuma.vue b/src/components/services/UptimeKuma.vue
index 5dd75f3..3be53b8 100644
--- a/src/components/services/UptimeKuma.vue
+++ b/src/components/services/UptimeKuma.vue
@@ -108,7 +108,9 @@ export default {
108 .catch((e) => console.error(e)) 108 .catch((e) => console.error(e))
109 .then((resp) => (this.incident = resp)); 109 .then((resp) => (this.incident = resp));
110 110
111 this.fetch(`/api/status-page/heartbeat/${this.dashboard}?cachebust=${Date.now()}`) 111 this.fetch(
112 `/api/status-page/heartbeat/${this.dashboard}?cachebust=${Date.now()}`
113 )
112 .catch((e) => console.error(e)) 114 .catch((e) => console.error(e))
113 .then((resp) => (this.heartbeat = resp)); 115 .then((resp) => (this.heartbeat = resp));
114 }, 116 },