Skip to content

Commit

Permalink
revert changed
Browse files Browse the repository at this point in the history
  • Loading branch information
MizukiTemma committed Sep 24, 2024
1 parent 18c1132 commit ff0cd8a
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions integreat_cms/cms/views/linkcheck/linkcheck_list_view.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,9 +66,7 @@ def get_pagination_params(self) -> str:
:return: The URL params
"""
params = {
k: v
for k, v in self.request.GET.items()
if k in (self.page_kwarg, "size") and v in ["10", "20", "50", "100", "500"]
k: v for k, v in self.request.GET.items() if k in (self.page_kwarg, "size")
}
return f"?{urlencode(params)}" if params else ""

Expand Down

0 comments on commit ff0cd8a

Please sign in to comment.