You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Right now the default for per_page is 20 unless otherwise specified. I also see that the code makes sure it is no larger than the total items.
To prevent a request asking for too many items at once, it would be convenient if Pagination could be initialized with a maximum items per page (max_per_page). Then the supplied per_page value could use the ceil() of total and max_per_page.
The text was updated successfully, but these errors were encountered:
Right now the default for per_page is 20 unless otherwise specified. I also see that the code makes sure it is no larger than the total items.
To prevent a request asking for too many items at once, it would be convenient if Pagination could be initialized with a maximum items per page (max_per_page). Then the supplied per_page value could use the ceil() of total and max_per_page.
The text was updated successfully, but these errors were encountered: