From f5e1df7dae1dcc1de07976d5f4d36e8c2ce28795 Mon Sep 17 00:00:00 2001 From: Zandor Smith Date: Thu, 18 Apr 2024 21:26:00 +0200 Subject: [PATCH] Fix linting issues. --- src/pages/StatusPage.vue | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/pages/StatusPage.vue b/src/pages/StatusPage.vue index fc9c3a2b..361bb0cf 100644 --- a/src/pages/StatusPage.vue +++ b/src/pages/StatusPage.vue @@ -313,14 +313,14 @@ -
+

- {{ $t(this.$root.downMonitors.length === 1 ? "offlineMonitor" : "offlineMonitors") }} + {{ $t($root.downMonitors.length === 1 ? "offlineMonitor" : "offlineMonitors") }}

-
+
@@ -796,7 +796,7 @@ export default { this.$root.heartbeatList = heartbeatList; this.$root.uptimeList = uptimeList; - this.$root.downMonitors = this.downMonitors(); + this.$root.downMonitors = this.downMonitors(); const heartbeatIds = Object.keys(heartbeatList); const downMonitors = heartbeatIds.reduce((downMonitorsAmount, currentId) => {