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

24 lines
612 B

'use strict';
define(
[
'marionette',
'Cells/NzbDroneCell'
], function (Marionette, NzbDroneCell) {
return NzbDroneCell.extend({
render: function () {
var templateName = this.column.get('template') || this.template;
this.templateFunction = Marionette.TemplateCache.get(templateName);
var data = this.cellValue.toJSON();
var html = this.templateFunction(data);
this.$el.html(html);
this.delegateEvents();
return this;
}
});
});