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

19 lines
402 B

'use strict';
define(
[
'Cells/NzbDroneCell'
], function (NzbDroneCell) {
return NzbDroneCell.extend({
className: 'relative-date-cell',
render: function () {
var date = this.model.get(this.column.get('name'));
this.$el.html(Date.create(date).relative());
return this;
}
});
});