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

24 lines
595 B

'use strict';
define(
[
'Cells/NzbDroneCell',
'moment',
'Shared/FormatHelpers'
], function (NzbDroneCell, Moment, FormatHelpers) {
return NzbDroneCell.extend({
className: 'relative-date-cell',
render: function () {
var date = this.model.get(this.column.get('name'));
if (date) {
this.$el.html("<span title='" + Moment(date).format('LLLL') + "' >" + FormatHelpers.DateHelper(date) + "</span");
}
return this;
}
});
});