Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Radarr/src/commit/4a530a6c915b7d4cbdba222fe53265c5ec47c1e4/UI/Cells/EpisodeTitleCell.js You should set ROOT_URL correctly, otherwise the web may not work correctly.
Radarr/UI/Cells/EpisodeTitleCell.js

32 lines
716 B

'use strict';
define(
[
'app',
'Cells/NzbDroneCell'
], function (App, NzbDroneCell) {
return NzbDroneCell.extend({
className: 'episode-title-cell',
events: {
'click': '_showDetails'
},
render: function () {
var title = this.cellValue.get('title');
if (!title || title === '') {
title = 'TBA';
}
this.$el.html(title);
return this;
},
_showDetails: function () {
App.vent.trigger(App.Commands.ShowEpisodeDetails, {episode: this.cellValue});
}
});
});