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

21 lines
458 B

12 years ago
'use strict';
define(
[
'Cells/NzbDroneCell',
'moment'
], function (NzbDroneCell, Moment) {
return NzbDroneCell.extend({
className: 'log-time-cell',
render: function () {
var date = Moment(this._getValue());
this.$el.html(date.format('LT'));
this.$el.attr('title', date.format('LLLL'));
return this;
}
});
});