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/780e374122b3e8f76e25ce63742cf50dd7c40d0d/UI/Series/Index/List/ItemView.js You should set ROOT_URL correctly, otherwise the web may not work correctly.
Readarr/UI/Series/Index/List/ItemView.js

29 lines
731 B

'use strict';
define(
[
'app',
'marionette',
], function (App, Marionette) {
return Marionette.ItemView.extend({
template: 'Series/Index/List/ItemTemplate',
ui: {
'progressbar': '.progress .bar'
},
events: {
'click .x-edit' : 'editSeries',
'click .x-remove': 'removeSeries'
},
editSeries: function () {
App.vent.trigger(App.Commands.EditSeriesCommand, {series: this.model});
},
removeSeries: function () {
App.vent.trigger(App.Commands.DeleteSeriesCommand, {series: this.model});
}
});
});