fix: limited the endpoints table limit to 1000

This commit is contained in:
sawhil 2025-04-24 18:27:44 +05:30 committed by Sahil Khan
parent ac0b640146
commit 7dad5dcd17

View File

@ -407,7 +407,7 @@ export const getEndPointsQueryPayload = (
groupBy: isGroupedByAttribute ? groupBy : defaultGroupBy,
having: [],
legend: '',
limit: null,
limit: 1000,
orderBy: [],
queryName: 'A',
reduceTo: 'avg',
@ -463,7 +463,7 @@ export const getEndPointsQueryPayload = (
groupBy: isGroupedByAttribute ? groupBy : defaultGroupBy,
having: [],
legend: '',
limit: null,
limit: 1000,
orderBy: [],
queryName: 'B',
reduceTo: 'avg',
@ -518,7 +518,7 @@ export const getEndPointsQueryPayload = (
groupBy: isGroupedByAttribute ? groupBy : defaultGroupBy,
having: [],
legend: '',
limit: null,
limit: 1000,
orderBy: [],
queryName: 'C',
reduceTo: 'avg',
@ -587,7 +587,7 @@ export const getEndPointsQueryPayload = (
groupBy: isGroupedByAttribute ? groupBy : defaultGroupBy,
having: [],
legend: '',
limit: null,
limit: 1000,
orderBy: [],
queryName: 'D',
reduceTo: 'avg',