From e539e5aa73437967d9c1aeb4dd611e7d6e9bfbdd Mon Sep 17 00:00:00 2001 From: Bas Wieringa Date: Fri, 15 Mar 2024 16:47:49 +0100 Subject: [PATCH] Final linting fix --- src/components/PublicGroupList.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/PublicGroupList.vue b/src/components/PublicGroupList.vue index 4b59cd10..220eef08 100644 --- a/src/components/PublicGroupList.vue +++ b/src/components/PublicGroupList.vue @@ -193,7 +193,7 @@ export default { * @param {number} monitorId Id of the monitor to get status for * @returns {number} Status of the last heartbeat */ - statusOfLastHeartbeat(monitorId) { + statusOfLastHeartbeat(monitorId) { let heartbeats = this.$root.heartbeatList[monitorId] ?? []; let lastHeartbeat = heartbeats[heartbeats.length - 1]; return lastHeartbeat?.status;