We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 40a2459 commit 8eefdfaCopy full SHA for 8eefdfa
base/components/components.py
@@ -27,7 +27,7 @@ def pagination_number(self, pagination: Pagination, num: int) -> PaginationItem:
27
its associated properties in a pagination navigation list.
28
"""
29
if num == pagination.paginator.ELLIPSIS:
30
- return PaginationItem(kind="ellipsis", text=pagination.paginator.ELLIPSIS)
+ return PaginationItem(kind="ellipsis", text=str(pagination.paginator.ELLIPSIS))
31
elif num == pagination.page_num:
32
return PaginationItem(kind="current", text=num)
33
else:
0 commit comments