[Favicon] minor

This commit is contained in:
Louis Lam 2022-03-12 15:31:01 +08:00
parent a9efdabcec
commit c68f7944e3

View File

@ -446,8 +446,11 @@ export default {
if (! this.editMode) {
axios.get("/api/status-page/heartbeat").then((res) => {
const { heartbeatList, uptimeList } = res.data;
const heartbeatIds = Object.keys(heartbeatList);
this.$root.heartbeatList = heartbeatList;
this.$root.uptimeList = uptimeList;
const heartbeatIds = Object.keys(heartbeatList);
const downMonitors = heartbeatIds.reduce((downMonitorsAmount, currentId) => {
const monitorHeartbeats = heartbeatList[currentId];
const lastHeartbeat = monitorHeartbeats.at(-1);
@ -461,8 +464,6 @@ export default {
favicon.badge(downMonitors);
this.$root.heartbeatList = heartbeatList;
this.$root.uptimeList = uptimeList;
this.loadedData = true;
});
}