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

16 lines
357 B

'use strict';
define(['app','Cells/NzbDroneCell'], function () {
return NzbDrone.Cells.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;
}
});
});