Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Sonarr/blame/commit/5bfcc511e8d335e982def071751dec54adcbef0b/UI/Missing/Row.js You should set ROOT_URL correctly, otherwise the web may not work correctly.
Sonarr/UI/Missing/Row.js

17 lines
312 B

'use strict';
define(
[
'backgrid'
], function (Backgrid) {
return Backgrid.Row.extend({
events: {
'click .x-search': 'search'
},
search: function () {
window.alert('Episode Search');
}
});
});