Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Readarr/src/commit/06f5ff7cb8a32b9af5be4d5e0eb825a31970520d/UI/Handlebars/Handlebars.Debug.js You should set ROOT_URL correctly, otherwise the web may not work correctly.
Readarr/UI/Handlebars/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();
});
});