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/83fe07524a1939ab6d00afc3db879a60dd701f36/UI/Cells/IndexerCell.js You should set ROOT_URL correctly, otherwise the web may not work correctly.
Prowlarr/UI/Cells/IndexerCell.js

17 lines
360 B

'use strict';
define(
[
'backgrid'
], function (Backgrid) {
return Backgrid.Cell.extend({
class : 'indexer-cell',
render: function () {
var indexer = this.model.get(this.column.get('name'));
this.$el.html(indexer);
return this;
}
});
});