Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Readarr/blame/commit/9dbfc6804f98588c13eda5eec5e8560b93471eeb/UI/AddSeries/NotFoundView.js You should set ROOT_URL correctly, otherwise the web may not work correctly.
Readarr/UI/AddSeries/NotFoundView.js

21 lines
404 B

'use strict';
define(
[
'marionette'
], function (Marionette) {
return Marionette.CompositeView.extend({
template: 'AddSeries/NotFoundTemplate',
initialize: function (options) {
this.options = options;
},
templateHelpers: function () {
return this.options;
}
});
});