Skip to content

Commit

Permalink
Merge pull request #1699 from laws-africa/sandrava-1651
Browse files Browse the repository at this point in the history
As a search user I want to go beyond page 8 of paginated search results
  • Loading branch information
Sandravaphilips authored Jan 23, 2024
2 parents fc60e8e + 28b8d7b commit f47729d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions peachjam/js/components/FindDocuments/SearchPagination.vue
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<nav>
<ul
v-if="totalPages > 1"
class="pagination"
class="pagination flex-wrap"
>
<li
v-for="num in pages"
Expand Down Expand Up @@ -43,7 +43,7 @@ export default {
emits: ['changed'],
data: () => {
return {
maxPages: 8,
maxPages: 15,
pageSize: 10
};
},
Expand Down
2 changes: 1 addition & 1 deletion peachjam/templates/peachjam/_pagination.html
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{% load i18n peachjam %}
<ul class="pagination">
<ul class="pagination flex-wrap">
{% if page_obj.has_previous %}
<li class="page-item">
<a class="page-link"
Expand Down

0 comments on commit f47729d

Please sign in to comment.