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/fa993109fc1ca3d1e18c96d2c206ad2a595b2b20/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 });
}
});
});