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/0d6d9a70218ae588ccd34e6b575a427ccf38457e/UI/AddSeries/SearchResultCollectionView.js You should set ROOT_URL correctly, otherwise the web may not work correctly.
Radarr/UI/AddSeries/SearchResultCollectionView.js

31 lines
728 B

'use strict';
define(
[
'marionette',
'AddSeries/SearchResultView',
], function (Marionette, SearchResultView) {
return Marionette.CollectionView.extend({
itemView: SearchResultView,
initialize: function (options) {
this.isExisting = options.isExisting;
},
showAll: function () {
this.showingAll = true;
this.render();
},
appendHtml: function (collectionView, itemView, index) {
if (!this.isExisting || this.showingAll || index === 0) {
collectionView.$el.append(itemView.el);
}
}
});
});