Skip to content

Commit

Permalink
Fix hotfixes pagination (#1679)
Browse files Browse the repository at this point in the history
Fix hotfixes pagination. The links are pointing to an non-existing page
  • Loading branch information
t20 committed Jul 29, 2024
1 parent d15f477 commit 015dfd3
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -88,13 +88,13 @@ <h4 class="panel-title pull-left">Recent Hotfix</h4>
</table>
<ul class="pager">
<li>
<a href='/envs/{{ env.envName }}/{{ env.stageName }}/hotfixes/?page_index={{ pageIndex|add:"-1" }}&page_size={{ pageSize }}'
<a href='/env/{{ env.envName }}/{{ env.stageName }}/hotfixes/?page_index={{ pageIndex|add:"-1" }}&page_size={{ pageSize }}'
class="btn btn-default {% if disablePrevious %}disabled{% endif %}">
<span class="glyphicon glyphicon-chevron-left"></span> Previous
</a>
</li>
<li>
<a href='/envs/{{ env.envName }}/{{ env.stageName }}/hotfixes/?page_index={{ pageIndex|add:"1" }}&page_size={{ pageSize }}'
<a href='/env/{{ env.envName }}/{{ env.stageName }}/hotfixes/?page_index={{ pageIndex|add:"1" }}&page_size={{ pageSize }}'
class="btn btn-default {% if disableNext %}disabled{% endif %}">
Next <span class="glyphicon glyphicon-chevron-right"></span>
</a>
Expand Down

0 comments on commit 015dfd3

Please sign in to comment.