mirror of
https://git.mirrors.martin98.com/https://github.com/SigNoz/signoz
synced 2025-08-01 12:22:00 +08:00
fix: remove incorrect API request on the logs explorer page (#3266)
This commit is contained in:
parent
7fb29ad2ee
commit
daebea701d
@ -103,6 +103,7 @@ function LogsContextList({
|
|||||||
PANEL_TYPES.LIST,
|
PANEL_TYPES.LIST,
|
||||||
{
|
{
|
||||||
keepPreviousData: true,
|
keepPreviousData: true,
|
||||||
|
enabled: !!requestData,
|
||||||
onSuccess: handleSuccess,
|
onSuccess: handleSuccess,
|
||||||
},
|
},
|
||||||
);
|
);
|
||||||
|
@ -154,7 +154,7 @@ function LogsExplorerViews(): JSX.Element {
|
|||||||
panelType,
|
panelType,
|
||||||
{
|
{
|
||||||
keepPreviousData: true,
|
keepPreviousData: true,
|
||||||
enabled: !isLimit,
|
enabled: !isLimit && !!requestData,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
...(timeRange &&
|
...(timeRange &&
|
||||||
|
Loading…
x
Reference in New Issue
Block a user