diff options
Diffstat (limited to 'src/components/services/UptimeKuma.vue')
-rw-r--r-- | src/components/services/UptimeKuma.vue | 4 |
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 | }, |