diff options
author | Stas Vilchik <vilchiks@gmail.com> | 2015-03-30 18:31:23 +0200 |
---|---|---|
committer | Stas Vilchik <vilchiks@gmail.com> | 2015-03-30 18:31:23 +0200 |
commit | d8e075635331f20695f99212c3d07689e44577e1 (patch) | |
tree | 1638da221f8575318c4eb1223519582ed607a65c | |
parent | de3909d2ba28c865268e3ed1b287c09bf82b98de (diff) | |
download | sonarqube-d8e075635331f20695f99212c3d07689e44577e1.tar.gz sonarqube-d8e075635331f20695f99212c3d07689e44577e1.zip |
SONAR-6331 open overview by default (fix for name parameter)
-rw-r--r-- | server/sonar-web/src/main/webapp/WEB-INF/app/controllers/dashboard_controller.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/server/sonar-web/src/main/webapp/WEB-INF/app/controllers/dashboard_controller.rb b/server/sonar-web/src/main/webapp/WEB-INF/app/controllers/dashboard_controller.rb index e3e3729b12e..338d95ed2ac 100644 --- a/server/sonar-web/src/main/webapp/WEB-INF/app/controllers/dashboard_controller.rb +++ b/server/sonar-web/src/main/webapp/WEB-INF/app/controllers/dashboard_controller.rb @@ -216,7 +216,7 @@ class DashboardController < ApplicationController end def redirect_if_overview - if @resource && !params[:did] + if @resource && !params[:did] && !params[:name] redirect_to :controller => 'overview', :action => 'index', :id => @resource.key end end |