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
When the user changes the page size in the feedback list (filter feedback form results), the page URL query parameter should be removed or set to page=1. If the user is currently on the last page, then increasing the page size will cause the 404 not found error because there are less pages in total when each page contains more list items. Returning to the first page makes sense when the user changes the page size.
I think it would be enough to just remove the page query parameter here:
When the user changes the page size in the feedback list (filter feedback form results), the
page
URL query parameter should be removed or set topage=1
. If the user is currently on the last page, then increasing the page size will cause the 404 not found error because there are less pages in total when each page contains more list items. Returning to the first page makes sense when the user changes the page size.I think it would be enough to just remove the
page
query parameter here:mooc-jutut/feedback/static/pagination.js
Line 6 in 14dcc65
(Currently, it does not touch the
page
parameter.paginate_by
is the size of the page, whilepage
defines which page is opened.)The text was updated successfully, but these errors were encountered: