Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Readarr/src/commit/a5e84528405a30eb061f65528aa1e05fe185930b/UI/Settings/Quality/Profile/AllowedLabeler.js You should set ROOT_URL correctly, otherwise the web may not work correctly.
Readarr/UI/Settings/Quality/Profile/AllowedLabeler.js

19 lines
580 B

'use strict';
define(['app', 'handlebars'], function (App,Handlebars) {
Handlebars.registerHelper('allowedLabeler', function () {
var ret = '';
var cutoff = this.cutoff;
_.each(this.allowed, function (allowed) {
if (allowed.id === cutoff.id) {
ret += '<span class="label label-info" title="Cutoff">' + allowed.name + '</span> ';
}
else {
ret += '<span class="label">' + allowed.name + '</span> ';
}
});
return new Handlebars.SafeString(ret);
});
});