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

27 lines
655 B

'use strict';
define(
[
'backgrid',
'moment',
'Shared/FormatHelpers'
], function (Backgrid, Moment, FormatHelpers) {
return Backgrid.Cell.extend({
className: 'air-date-cell',
render: function () {
this.$el.empty();
var date = this.model.get(this.column.get('name'));
if (date) {
this.$el.html('<div>' + FormatHelpers.DateHelper(date) + '</div>');
this.$el.children('div').attr('title', Moment(date).format('LLLL'));
}
return this;
}
});
});