From 996cb1c25ed6d2865e797a06137067179b054a1b Mon Sep 17 00:00:00 2001 From: Simon Brandhof Date: Mon, 6 May 2013 09:32:28 +0200 Subject: [PATCH] SONAR-3755 display non-closed issues --- .../main/webapp/WEB-INF/app/controllers/resource_controller.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sonar-server/src/main/webapp/WEB-INF/app/controllers/resource_controller.rb b/sonar-server/src/main/webapp/WEB-INF/app/controllers/resource_controller.rb index c38b6afd652..053e4a2c625 100644 --- a/sonar-server/src/main/webapp/WEB-INF/app/controllers/resource_controller.rb +++ b/sonar-server/src/main/webapp/WEB-INF/app/controllers/resource_controller.rb @@ -413,7 +413,7 @@ class ResourceController < ApplicationController @filtered = !@expanded rule_param = params[:rule] - options = {'components' => @resource.key, 'resolutions' => ['OPEN', 'FIXED']} + options = {'components' => @resource.key, 'statuses' => ['OPEN', 'REOPEN', 'RESOLVED']} if rule_param.blank? && params[:metric] metric = Metric.by_id(params[:metric]) -- 2.39.5