Skip to content
Snippets Groups Projects

Fix the bug on the pagination symbol on the feedback page

2 files
+ 2
1
Compare changes
  • Side-by-side
  • Inline

Files

@@ -86,7 +86,7 @@
</th:block>
<li th:classappend="${not page.isLast()} ? '' : 'disabled'" class="page-item">
<span th:if="${page.isLast()}">&raquo;</span>
<a th:if="${page.isLast()}">&raquo;</a>
<a th:if="${!page.isLast()}" th:href="@{${url}(page=${page.getTotalPages()-1}, size=${page.getSize()})}">&raquo;</a>
</li>
Loading