diff --git a/public/favicon.ico b/public/favicon.ico index d131d808..f2f69c9a 100644 Binary files a/public/favicon.ico and b/public/favicon.ico differ diff --git a/src/assets/customLoader/ParseableAnimate.tsx b/src/assets/customLoader/ParseableAnimate.tsx index c4dc3d03..13dc633e 100644 --- a/src/assets/customLoader/ParseableAnimate.tsx +++ b/src/assets/customLoader/ParseableAnimate.tsx @@ -5,7 +5,7 @@ const ParseableAnimated: MantineLoaderComponent = forwardRef(() => ( - + @@ -15,7 +15,7 @@ const ParseableAnimated: MantineLoaderComponent = forwardRef(() => ( - + @@ -28,29 +28,29 @@ const ParseableAnimated: MantineLoaderComponent = forwardRef(() => ( diff --git a/src/assets/images/brand/icon.svg b/src/assets/images/brand/icon.svg index 36297700..f40de12c 100644 --- a/src/assets/images/brand/icon.svg +++ b/src/assets/images/brand/icon.svg @@ -1 +1,7 @@ - \ No newline at end of file + + + + + + + diff --git a/src/assets/images/brand/loadingIcon.svg b/src/assets/images/brand/loadingIcon.svg index 55df88eb..626b328a 100644 --- a/src/assets/images/brand/loadingIcon.svg +++ b/src/assets/images/brand/loadingIcon.svg @@ -1,7 +1,7 @@ - + @@ -13,7 +13,7 @@ - + diff --git a/src/assets/images/brand/logo-invert.svg b/src/assets/images/brand/logo-invert.svg index 6de4d017..f37245c1 100644 --- a/src/assets/images/brand/logo-invert.svg +++ b/src/assets/images/brand/logo-invert.svg @@ -1 +1,70 @@ - \ No newline at end of file + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/assets/images/brand/logo.svg b/src/assets/images/brand/logo.svg index 6de4d017..f37245c1 100644 --- a/src/assets/images/brand/logo.svg +++ b/src/assets/images/brand/logo.svg @@ -1 +1,70 @@ - \ No newline at end of file + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/pages/Stream/Views/Explore/StaticLogTable.tsx b/src/pages/Stream/Views/Explore/StaticLogTable.tsx index 8f696d4a..f08ab9ca 100644 --- a/src/pages/Stream/Views/Explore/StaticLogTable.tsx +++ b/src/pages/Stream/Views/Explore/StaticLogTable.tsx @@ -121,7 +121,7 @@ const makeHeaderOpts = ( style={{ display: isFirstSelectedRow && isFirstColumn ? 'flex' : '', }}> - {isSecureHTTPContext ? : null} + {sanitizedValue}
@@ -149,9 +149,8 @@ const Table = (props: { primaryHeaderHeight: number }) => { }); const contextMenuRef = useRef(null); - const [{ orderedHeaders, disabledColumns, pageData, wrapDisabledColumns, rowNumber }, setLogsStore] = useLogsStore( - (store) => store.tableOpts, - ); + const [{ orderedHeaders, disabledColumns, pageData, wrapDisabledColumns, rowNumber, pinnedColumns }, setLogsStore] = + useLogsStore((store) => store.tableOpts); const [isSecureHTTPContext] = useAppStore((store) => store.isSecureHTTPContext); const [fieldTypeMap] = useStreamStore((store) => store.fieldTypeMap); const columns = useMemo( @@ -291,7 +290,7 @@ const Table = (props: { primaryHeaderHeight: number }) => { enableColumnPinning initialState={{ columnPinning: { - left: ['rowNumber'], + left: pinnedColumns, }, }} enableStickyHeader @@ -299,7 +298,7 @@ const Table = (props: { primaryHeaderHeight: number }) => { layoutMode="grid" state={{ columnPinning: { - left: ['rowNumber'], + left: pinnedColumns, }, columnVisibility, columnOrder: orderedHeaders, @@ -341,20 +340,24 @@ const Table = (props: { primaryHeaderHeight: number }) => { return null; })()} - { - copyJSON(); - closeContextMenu(); - }}> - Copy JSON - - { - copyUrl(); - closeContextMenu(); - }}> - Copy permalink - + {isSecureHTTPContext && ( + <> + { + copyJSON(); + closeContextMenu(); + }}> + Copy JSON + + { + copyUrl(); + closeContextMenu(); + }}> + Copy permalink + + + )}
)}