mirror of
https://git.mirrors.martin98.com/https://github.com/SigNoz/signoz
synced 2025-08-15 01:46:00 +08:00
fix: hide logs table view (#3068)
Co-authored-by: Vishal Sharma <makeavish786@gmail.com>
This commit is contained in:
parent
857e505323
commit
f18b073810
@ -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 {
|
||||
<TimeSeriesView isLoading={isFetching} data={data} isError={isError} />
|
||||
),
|
||||
},
|
||||
{
|
||||
label: 'Table',
|
||||
key: PANEL_TYPES.TABLE,
|
||||
children: (
|
||||
<LogsExplorerTable
|
||||
data={data?.payload.data.newResult.data.result || []}
|
||||
isLoading={isFetching}
|
||||
/>
|
||||
),
|
||||
},
|
||||
// TODO: temporary hide table view
|
||||
// {
|
||||
// label: 'Table',
|
||||
// key: PANEL_TYPES.TABLE,
|
||||
// children: (
|
||||
// <LogsExplorerTable
|
||||
// data={data?.payload.data.newResult.data.result || []}
|
||||
// isLoading={isFetching}
|
||||
// />
|
||||
// ),
|
||||
// },
|
||||
],
|
||||
[
|
||||
isMultipleQueries,
|
||||
|
Loading…
x
Reference in New Issue
Block a user