Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Radarr/commit/c9c9e081a892cdd426cd54f62877e4803ee99c92 You should set ROOT_URL correctly, otherwise the web may not work correctly.

Don't activate view button until its set

pull/3113/head
Mark McDowall 12 years ago
parent 46bc97ef92
commit c9c9e081a8

@ -136,14 +136,11 @@ define([
changeView: function (e) {
e.preventDefault();
var view = parseInt($(e.target).data('target'));
var target = $(e.target);
if (isNaN(view)) {
view = parseInt($(e.target).parent('a').data('target'));
this.setActive($(e.target).parent('a'));
}
else{
this.setActive($(e.target));
target = $(e.target).parent('a');
}
if (view === 1) {
@ -160,6 +157,8 @@ define([
NzbDrone.Config.SeriesViewStyle(0);
this.showTable();
}
this.setActive(target);
},
setActive: function (element) {

Loading…
Cancel
Save