Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Readarr/src/commit/21656ecc39f4c85f25776d387bf2170b2ada2130/UI/Calendar/UpcomingItemView.js You should set ROOT_URL correctly, otherwise the web may not work correctly.
Readarr/UI/Calendar/UpcomingItemView.js

23 lines
570 B

'use strict';
define(
[
'app',
'marionette',
'Episode/Layout'
], function (App, Marionette, EpisodeLayout) {
return Marionette.ItemView.extend({
template: 'Calendar/UpcomingItemTemplate',
tagName : 'div',
events : {
'click .x-episode-title' : '_showEpisodeDetails'
},
_showEpisodeDetails : function() {
var view = new EpisodeLayout({ model: this.model });
App.modalRegion.show(view);
}
});
});