From f18b0738102a720e6705be9316507b1107a60a73 Mon Sep 17 00:00:00 2001 From: Yevhen Shevchenko <90138953+yeshev@users.noreply.github.com> Date: Fri, 7 Jul 2023 13:30:12 +0300 Subject: [PATCH] fix: hide logs table view (#3068) Co-authored-by: Vishal Sharma --- .../src/container/LogsExplorerViews/index.tsx | 24 ++++++++++--------- 1 file changed, 13 insertions(+), 11 deletions(-) diff --git a/frontend/src/container/LogsExplorerViews/index.tsx b/frontend/src/container/LogsExplorerViews/index.tsx index a9a8d70894..8b5eecb869 100644 --- a/frontend/src/container/LogsExplorerViews/index.tsx +++ b/frontend/src/container/LogsExplorerViews/index.tsx @@ -5,7 +5,8 @@ import { DEFAULT_PER_PAGE_VALUE } from 'container/Controls/config'; import LogExplorerDetailedView from 'container/LogExplorerDetailedView'; import LogsExplorerChart from 'container/LogsExplorerChart'; import LogsExplorerList from 'container/LogsExplorerList'; -import LogsExplorerTable from 'container/LogsExplorerTable'; +// TODO: temporary hide table view +// import LogsExplorerTable from 'container/LogsExplorerTable'; import { GRAPH_TYPES } from 'container/NewDashboard/ComponentsSlider'; import TimeSeriesView from 'container/TimeSeriesView/TimeSeriesView'; import { useGetExplorerQueryRange } from 'hooks/queryBuilder/useGetExplorerQueryRange'; @@ -272,16 +273,17 @@ function LogsExplorerViews(): JSX.Element { ), }, - { - label: 'Table', - key: PANEL_TYPES.TABLE, - children: ( - - ), - }, + // TODO: temporary hide table view + // { + // label: 'Table', + // key: PANEL_TYPES.TABLE, + // children: ( + // + // ), + // }, ], [ isMultipleQueries,