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,