This pull request includes changes to update the pagination settings across the frontend. The most important changes include updating the default pagination size and the available rows count options.
Pagination Settings Update:
src/frontend/src/constants/constants.ts: Changed PAGINATION_SIZE from 10 to 12 and updated PAGINATION_ROWS_COUNT to [12, 24, 48, 96] to reflect the new pagination settings.
This pull request includes changes to update the pagination settings across the frontend. The most important changes include updating the default pagination size and the available rows count options.
Pagination Settings Update:
src/frontend/src/constants/constants.ts
: ChangedPAGINATION_SIZE
from 10 to 12 and updatedPAGINATION_ROWS_COUNT
to[12, 24, 48, 96]
to reflect the new pagination settings.src/frontend/src/pages/MainPage/pages/homePage/index.tsx
: Updated the defaultpageSize
state to 12, adjusted thepagination.size
default to 12, and changed therowsCount
options to[12, 24, 48, 96]
in thePaginatorComponent
. [1] [2] [3]