Skip to content

Commit

Permalink
[BUGFIX] Fix count of paginated items
Browse files Browse the repository at this point in the history
  • Loading branch information
timohund committed Nov 1, 2017
1 parent bf2bfeb commit 461956e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Resources/Private/Templates/Search/Results.html
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ <h2>{group.groupname}</h2>
<f:for each="{group.groupitems}" as="groupItem">
<strong>{groupItem.groupValue} <span>({groupItem.numFound})</span></strong>
<s:widget.groupItemPaginate groupItem="{groupItem}" resultSet="{resultSet}">
<ol start="{pagination.displayRangeStart}" class="results-list">
<ol start="{pagination.resultCountStart}" class="results-list">
<f:for each="{documents}" as="document">
<f:render partial="Result/Document" section="Document" arguments="{resultSet:resultSet, document:document}" />
</f:for>
Expand Down

0 comments on commit 461956e

Please sign in to comment.