Adjust logs pagination

This commit is contained in:
Piotr Rogowski 2022-10-25 20:31:19 +02:00
parent 7ceddb8bcf
commit 48c10f35c1
No known key found for this signature in database
GPG Key ID: 4A842D702D9C6F8F
3 changed files with 3 additions and 3 deletions

View File

@ -17,7 +17,7 @@ const scale = 2;
const secondaryTranslate = 2.6;
const primaryTranslate = 1;
const PAGE_SIZE = 500;
const PAGE_SIZE = 200;
interface Props {
data: CompositeLogEntry[];

View File

@ -24,7 +24,7 @@ const LogsPagination = (props: LogsPaginationProps) => {
return (
<div style={{ position: 'relative' }}>
<div style={{ position: 'absolute', bottom: 0, right: 70, zIndex: 1 }}>
<div style={{ position: 'absolute', bottom: 0, right: 40, zIndex: 1 }}>
<Pagination
simple
defaultPageSize={pageSize}

View File

@ -23,7 +23,7 @@ interface Props {
height: number;
};
const PAGE_SIZE = 500;
const PAGE_SIZE = 200;
const ToothCanvas = ({ data, width, height }: Props) => {
const { sm } = useBreakpoint();