From 43284ae62535845f4e39968c7671cb476f18a050 Mon Sep 17 00:00:00 2001 From: gorkem-bwl Date: Thu, 14 Aug 2025 22:19:54 -0400 Subject: [PATCH 1/2] fix: remove description text and dividers from Logs sections Removed description strings and divider lines from: - Server logs: 'System logs - last 1000 lines' and divider - Queue metrics: queue description and divider This cleans up the UI by removing redundant descriptive text that users can infer from the tab names and content context. --- client/src/Pages/Logs/Logs/index.jsx | 19 ------------------- client/src/Pages/Logs/Queue/index.jsx | 2 -- 2 files changed, 21 deletions(-) diff --git a/client/src/Pages/Logs/Logs/index.jsx b/client/src/Pages/Logs/Logs/index.jsx index d9ce2a25c..9264e2c4b 100644 --- a/client/src/Pages/Logs/Logs/index.jsx +++ b/client/src/Pages/Logs/Logs/index.jsx @@ -51,25 +51,6 @@ const Logs = () => { ]; return ( - - {t("logsPage.description")} - - { return ( - {t("queuePage.metricsTable.title")} - Date: Thu, 14 Aug 2025 22:22:05 -0400 Subject: [PATCH 2/2] fix: remove excess spacing after removing description text Removed top margin (mt={theme.spacing(10)}) and adjusted sticky position from the log level selector since it was creating unwanted space between the tab bar and the 'Log level' dropdown after removing the description text and divider. --- client/src/Pages/Logs/Logs/index.jsx | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/client/src/Pages/Logs/Logs/index.jsx b/client/src/Pages/Logs/Logs/index.jsx index 9264e2c4b..b44b3fd1a 100644 --- a/client/src/Pages/Logs/Logs/index.jsx +++ b/client/src/Pages/Logs/Logs/index.jsx @@ -56,10 +56,9 @@ const Logs = () => { direction="row" alignItems="center" gap={theme.spacing(4)} - mt={theme.spacing(10)} sx={{ position: "sticky", - top: theme.spacing(34), + top: theme.spacing(17), backdropFilter: "blur(10px)", paddingTop: theme.spacing(4), paddingLeft: theme.spacing(6),