Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Prowlarr/blame/commit/1b55859eb29d22867d8563527ad3d57a67bbc8f4/UI/jQuery/TooltipBinder.js You should set ROOT_URL correctly, otherwise the web may not work correctly.
Prowlarr/UI/jQuery/TooltipBinder.js

10 lines
188 B

"use strict";
define(
[
'bootstrap'
], function () {
$(document).on('mouseenter', '[title]', function () {
$(this).tooltip('show');
});
});