From 49d81caf9479320802170438997a5f9fb65b1237 Mon Sep 17 00:00:00 2001 From: Praveen K B Date: Tue, 7 Jan 2025 14:14:51 +0530 Subject: [PATCH 1/3] fix: COlumn list scroll issue & Row actions btn fix --- src/pages/Stream/Views/Explore/LogsViewConfig.tsx | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/src/pages/Stream/Views/Explore/LogsViewConfig.tsx b/src/pages/Stream/Views/Explore/LogsViewConfig.tsx index 70b20691..f49b4927 100644 --- a/src/pages/Stream/Views/Explore/LogsViewConfig.tsx +++ b/src/pages/Stream/Views/Explore/LogsViewConfig.tsx @@ -254,7 +254,7 @@ const ColumnsList = (props: { isLoading: boolean }) => { onChangeHandler={onSearchHandler} disabled={_.isEmpty(headers)} /> - + @@ -272,7 +272,7 @@ const ColumnsList = (props: { isLoading: boolean }) => { Clear All - + {(provided) => ( @@ -326,7 +326,9 @@ const LogsViewConfig = (props: { schemaLoading: boolean; logsLoading: boolean; i width: sideBarOpen ? 0 : LOGS_CONFIG_SIDEBAR_WIDTH, transition: 'width 0.5s', }}> - +
{configViewType === 'schema' ? ( From 4e9f81e163e991e9def564ce78a6ceaec0b0b7c0 Mon Sep 17 00:00:00 2001 From: Praveen K B <30530587+praveen5959@users.noreply.github.com> Date: Tue, 7 Jan 2025 16:28:48 +0530 Subject: [PATCH 2/3] fix: Row action btn visibility issue --- src/pages/Stream/Views/Explore/StaticLogTable.tsx | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/pages/Stream/Views/Explore/StaticLogTable.tsx b/src/pages/Stream/Views/Explore/StaticLogTable.tsx index 6ffec611..a2b04b47 100644 --- a/src/pages/Stream/Views/Explore/StaticLogTable.tsx +++ b/src/pages/Stream/Views/Explore/StaticLogTable.tsx @@ -120,9 +120,7 @@ const makeHeaderOpts = ( style={{ display: isFirstSelectedRow && isFirstColumn ? 'flex' : '', }}> - {isSecureHTTPContext - ? sanitizedValue && - : null} + {isSecureHTTPContext ? : null} {sanitizedValue}
From cd3aabb39c6b24ca340cc5609f9962664639f898 Mon Sep 17 00:00:00 2001 From: Praveen K B Date: Tue, 7 Jan 2025 20:32:13 +0530 Subject: [PATCH 3/3] fix: Sidebar overlay when empty data --- src/pages/Stream/Views/Explore/LogsViewConfig.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/src/pages/Stream/Views/Explore/LogsViewConfig.tsx b/src/pages/Stream/Views/Explore/LogsViewConfig.tsx index f49b4927..7474f95c 100644 --- a/src/pages/Stream/Views/Explore/LogsViewConfig.tsx +++ b/src/pages/Stream/Views/Explore/LogsViewConfig.tsx @@ -323,6 +323,7 @@ const LogsViewConfig = (props: { schemaLoading: boolean; logsLoading: boolean; i ref={divRef} style={{ borderRight: '1px solid var(--mantine-color-gray-2)', + display: sideBarOpen ? 'none' : 'block', width: sideBarOpen ? 0 : LOGS_CONFIG_SIDEBAR_WIDTH, transition: 'width 0.5s', }}>