Skip to content

Commit

Permalink
fix total page
Browse files Browse the repository at this point in the history
  • Loading branch information
rsoika committed Dec 4, 2024
1 parent 5e4434f commit e38217b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
</ui:param>
<ui:param name="searchresultCount" value="#{searchController.getTotalCount()}"></ui:param>
<ui:param name="searchPage"
value="#{(searchController.getPageIndex()+1)}/#{(searchController.getTotalPages()+1)}">
value="#{(searchController.getPageIndex()+1)}/#{(searchController.getTotalPages())}">
</ui:param>
<h:panelGroup rendered="#{(!empty searchresult) }">
<!-- placeholder to ensure data is loaded immediately - do not remove -->
Expand Down

0 comments on commit e38217b

Please sign in to comment.