Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Lidarr/src/commit/16813327d183886eefd0af66ce74eae557aa88e3/UI/Logs/Files/Row.js You should set ROOT_URL correctly, otherwise the web may not work correctly.
Lidarr/UI/Logs/Files/Row.js

20 lines
411 B

'use strict';
define(
[
'app',
'backgrid'
], function (App, Backgrid) {
return Backgrid.Row.extend({
className: 'log-file-row',
events: {
'click': '_showContents'
},
_showContents: function () {
App.vent.trigger(App.Commands.ShowLogFile, { model: this.model });
}
});
});