Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Sonarr/src/commit/641e01376b1e8239b69dc881742b4fc7490cd85f/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');
}
});
});