From 7a177e18e4fa53fae4e5636c50439e9b39c9eba9 Mon Sep 17 00:00:00 2001 From: Palash Gupta Date: Fri, 14 Jul 2023 12:31:25 +0530 Subject: [PATCH] chore: table view for logs is updated (#3135) --- .../src/container/LogsExplorerViews/index.tsx | 24 +++++++++---------- 1 file changed, 11 insertions(+), 13 deletions(-) diff --git a/frontend/src/container/LogsExplorerViews/index.tsx b/frontend/src/container/LogsExplorerViews/index.tsx index e626f71d8c..45cbceaa45 100644 --- a/frontend/src/container/LogsExplorerViews/index.tsx +++ b/frontend/src/container/LogsExplorerViews/index.tsx @@ -15,8 +15,7 @@ import { DEFAULT_PER_PAGE_VALUE } from 'container/Controls/config'; import ExportPanel from 'container/ExportPanel'; import LogsExplorerChart from 'container/LogsExplorerChart'; import LogsExplorerList from 'container/LogsExplorerList'; -// TODO: temporary hide table view -// import LogsExplorerTable from 'container/LogsExplorerTable'; +import LogsExplorerTable from 'container/LogsExplorerTable'; import { GRAPH_TYPES } from 'container/NewDashboard/ComponentsSlider'; import TimeSeriesView from 'container/TimeSeriesView/TimeSeriesView'; import { useUpdateDashboard } from 'hooks/dashboard/useUpdateDashboard'; @@ -437,17 +436,16 @@ function LogsExplorerViews(): JSX.Element { ), }, - // TODO: temporary hide table view - // { - // label: 'Table', - // key: PANEL_TYPES.TABLE, - // children: ( - // - // ), - // }, + { + label: 'Table', + key: PANEL_TYPES.TABLE, + children: ( + + ), + }, ], [ isMultipleQueries,