diff --git a/apps/client/src/widgets/collections/Pagination.tsx b/apps/client/src/widgets/collections/Pagination.tsx index 5704715441..b152e59638 100644 --- a/apps/client/src/widgets/collections/Pagination.tsx +++ b/apps/client/src/widgets/collections/Pagination.tsx @@ -27,7 +27,7 @@ export function Pager({ page, pageSize, setPage, pageCount, totalNotes }: Omit
{setPage(--page)}} + onClick={() => {setPage(page - 1)}} /> {children} @@ -36,7 +36,7 @@ export function Pager({ page, pageSize, setPage, pageCount, totalNotes }: Omit
{setPage(++page)}}
+ onClick={() => {setPage(page + 1)}}
/>
({t("pagination.total_notes", { count: totalNotes })})
@@ -65,8 +65,9 @@ function createPageButtons(page: number, setPage: Dispatch