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/bb518ca19bfa07ade1a8d0c5acb1ac597fe458b1/UI/Cells/IndexerCell.js
You should set ROOT_URL correctly, otherwise the web may not work correctly.
|
'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;
|
|
}
|
|
});
|
|
});
|