mirror of
https://git.mirrors.martin98.com/https://github.com/SigNoz/signoz
synced 2025-08-12 20:09:00 +08:00
chore: discard passing 'hideOnSinglePage' to <ResizeTable, since already overridden
This commit is contained in:
parent
f23ceea54e
commit
13df87ed69
@ -423,7 +423,6 @@ function AllErrors(): JSX.Element {
|
||||
current: getUpdatedOffset / 10 + 1,
|
||||
position: ['bottomLeft'],
|
||||
total: errorCountResponse.data?.payload || 0,
|
||||
hideOnSinglePage: true,
|
||||
}}
|
||||
onChange={onChangeHandler}
|
||||
/>
|
||||
|
@ -358,7 +358,6 @@ function ListAlert({ allAlertRules, refetch }: ListAlertProps): JSX.Element {
|
||||
|
||||
const paginationConfig = {
|
||||
defaultCurrent: Number(paginationParam) || 1,
|
||||
hideOnSinglePage: true,
|
||||
};
|
||||
return (
|
||||
<>
|
||||
|
@ -83,7 +83,6 @@ function ServiceMetricTable({
|
||||
defaultPageSize: 10,
|
||||
showTotal: (total: number, range: number[]): string =>
|
||||
`${range[0]}-${range[1]} of ${total} items`,
|
||||
hideOnSinglePage: true,
|
||||
};
|
||||
return (
|
||||
<>
|
||||
|
@ -40,7 +40,6 @@ function ServiceTraceTable({
|
||||
defaultPageSize: 10,
|
||||
showTotal: (total: number, range: number[]): string =>
|
||||
`${range[0]}-${range[1]} of ${total} items`,
|
||||
hideOnSinglePage: true,
|
||||
};
|
||||
return (
|
||||
<>
|
||||
|
@ -215,7 +215,6 @@ function TraceTable(): JSX.Element {
|
||||
responsive: true,
|
||||
position: ['bottomLeft'],
|
||||
total: totalCount,
|
||||
hideOnSinglePage: true,
|
||||
}}
|
||||
/>
|
||||
);
|
||||
|
Loading…
x
Reference in New Issue
Block a user