Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Prowlarr/src/commit/c5ae38638a23f547beaf7f8435245b60d570c3fb/UI/Shared/Grid/PagerTemplate.html You should set ROOT_URL correctly, otherwise the web may not work correctly.
Prowlarr/UI/Shared/Grid/PagerTemplate.html

15 lines
445 B

<ul>
{{#each handles}}
<li {{#if className}}class="{{className}}"{{/if}} >
{{#if pageNumber}}
<span>{{pageNumber}} / {{lastPage}}</span>
{{else}}
<i class="pager-btn clickable {{label}}" data-action="{{action}}"/>
{{/if}}
</li>
{{/each}}
</ul>
<span class="total-records">
Total Records: {{Number state.totalRecords}}
</span>