Skip to content

Commit

Permalink
Grav Content: particle issue with Pagination #3239
Browse files Browse the repository at this point in the history
  • Loading branch information
hexplor committed May 21, 2024
1 parent 0a5f02a commit a774543
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
# 5.5.18
## 11/21/2023
## 05/21/2024
1. [Common](#common)
1. [](#bugfix)
- Regression: Mobile Menu fix (#3198)
- Joomla 5 FontAwesome 6 bugfix (#3196)
- Error on previous/next button fix (#3218)
- Minor english translation bugfixes
- Joomla Articles particle issue with Pagination (#3239)
# 5.5.17
## 10/30/2023
1. [Common](#common)
Expand Down
2 changes: 1 addition & 1 deletion engines/grav/nucleus/particles/contentarray.html.twig
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
},
false) %}
{% set total = collection.count() %}
{% set pages = collection.slice(start, limit.total) %}
{% set pages = collection.slice(start, limit.total|default(2)|int) %}

{% block particle %}

Expand Down

0 comments on commit a774543

Please sign in to comment.