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

10 lines
188 B

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