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

17 lines
477 B

<div class="control-group">
<label class="control-label">{{label}}</label>
<div class="controls">
<select name="fields.{{order}}.value">
{{#each selectOptions}}
<option value="{{value}}">{{name}}</option>
{{/each}}
</select>
{{#if helpText}}
<span class="help-inline">
<i class="icon-question-sign" title="{{helpText}}"/>
</span>
{{/if}}
</div>
</div>