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

28 lines
620 B

'use strict';
define(
[
'app',
'Cells/NzbDroneCell'
], function (App, NzbDroneCell) {
return NzbDroneCell.extend({
className: 'history-details-cell',
events: {
'click': '_showDetails'
},
render: function () {
this.$el.empty();
this.$el.html('<i class="icon-info-sign"></i>');
return this;
},
_showDetails: function () {
App.vent.trigger(App.Commands.ShowHistoryDetails, { history: this.model });
}
});
});