Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Radarr/blame/commit/1c62782fcd0af09aad93857cbf74d7e58c76a9fb/UI/Cells/FileSizeCell.js You should set ROOT_URL correctly, otherwise the web may not work correctly.
Radarr/UI/Cells/FileSizeCell.js

20 lines
467 B

'use strict';
define(
[
'backgrid',
'Shared/FormatHelpers'
], function (Backgrid, FormatHelpers) {
return Backgrid.Cell.extend({
className: 'file-size-cell',
render: function () {
var size = this.model.get(this.column.get('name'));
12 years ago
this.$el.html(FormatHelpers.bytes(size));
this.delegateEvents();
return this;
}
});
});