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/bbacad9171ccd12e46517cc7dad372833412bf5f/UI/Handlebars/debug.js You should set ROOT_URL correctly, otherwise the web may not work correctly.
Readarr/UI/Handlebars/debug.js

12 lines
268 B

'use strict';
define(
[
'handlebars'
], function (Handlebars) {
Handlebars.registerHelper("debug", function () {
console.group('Handlebar context');
console.log(this);
console.groupEnd();
});
});