From d8e075635331f20695f99212c3d07689e44577e1 Mon Sep 17 00:00:00 2001 From: Stas Vilchik Date: Mon, 30 Mar 2015 18:31:23 +0200 Subject: [PATCH] SONAR-6331 open overview by default (fix for name parameter) --- .../main/webapp/WEB-INF/app/controllers/dashboard_controller.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- 2.39.5