From 4de2261a418074dc761cbb15130d5734d188d85d Mon Sep 17 00:00:00 2001 From: Henri Remonen Date: Mon, 10 Jun 2024 09:54:35 +0300 Subject: [PATCH] fix: remove falsy comment --- src/client/pages/Admin/tabs/Updater/UpdaterView.jsx | 1 - 1 file changed, 1 deletion(-) diff --git a/src/client/pages/Admin/tabs/Updater/UpdaterView.jsx b/src/client/pages/Admin/tabs/Updater/UpdaterView.jsx index e5ab9f4bc..f9a6dbf73 100644 --- a/src/client/pages/Admin/tabs/Updater/UpdaterView.jsx +++ b/src/client/pages/Admin/tabs/Updater/UpdaterView.jsx @@ -26,7 +26,6 @@ import ExternalLink from '../../../../components/common/ExternalLink' const createGraylogLink = updaterStatus => { const baseUrl = GRAYLOG_URL - // Graylog uses relative time ranges in seconds const startDate = new Date(updaterStatus.startedAt).toISOString() const endDate = updaterStatus.finishedAt ? new Date(updaterStatus.finishedAt).toISOString() : new Date().toISOString()