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/f1d2e0e6df281a1eff8702e8da4d34b7b645cf21/UI/Series/Details/EpisodeTitleCell.js You should set ROOT_URL correctly, otherwise the web may not work correctly.
Lidarr/UI/Series/Details/EpisodeTitleCell.js

18 lines
424 B

"use strict";
define(['app', 'Episode/Layout'], function () {
NzbDrone.Series.Details.EpisodeTitleCell = Backgrid.StringCell.extend({
className: 'episode-title-cell',
events: {
'click': 'showDetails'
},
showDetails: function () {
var view = new NzbDrone.Episode.Layout({ model: this.model });
NzbDrone.modalRegion.show(view);
}
});
});