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,