Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Lidarr/blame/commit/da9838f0324337d4fcfbc82dba608278754b2675/UI/Shared/Toolbar/ButtonModel.js You should set ROOT_URL correctly, otherwise the web may not work correctly.
Lidarr/UI/Shared/Toolbar/ButtonModel.js

18 lines
411 B

"use strict";
define(['app'], function () {
NzbDrone.Shared.Toolbar.ActionTypes =
{
RouteTrigger: 'RouteTrigger',
CallBack : 'CallBack'
};
NzbDrone.Shared.Toolbar.ButtonModel = Backbone.Model.extend({
defaults: {
'target' : '/nzbdrone/route',
'title' : '',
'active' : false,
'tooltip': undefined }
});
});