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/43b4262e14116b15e2a3df1c3d196f567a0738cd/UI/Settings/Misc/MiscView.js You should set ROOT_URL correctly, otherwise the web may not work correctly.
Readarr/UI/Settings/Misc/MiscView.js

21 lines
447 B

'use strict';
define([
'app', 'Settings/SettingsModel'
], function () {
NzbDrone.Settings.Misc.MiscView = Backbone.Marionette.ItemView.extend({
template : 'Settings/Misc/MiscTemplate',
className: 'form-horizontal',
ui: {
tooltip: '[class^="help-inline"] i'
},
onRender: function () {
this.ui.tooltip.tooltip({ placement: 'right', html: true });
}
});
});