]> source.dussan.org Git - sonarqube.git/commitdiff
SONAR-5584 Increase the default limit of the treemap components
authorStas Vilchik <vilchiks@gmail.com>
Mon, 6 Oct 2014 12:55:20 +0000 (14:55 +0200)
committerStas Vilchik <vilchiks@gmail.com>
Mon, 6 Oct 2014 14:00:00 +0000 (16:00 +0200)
plugins/sonar-core-plugin/src/main/java/org/sonar/plugins/core/widgets/TreemapWidget.java

index 615c99758834a9f0b3cdb032ebf0b186875522c7..e0787c4c5a855900d93e3b18e6cef7695a3b7e6f 100644 (file)
@@ -31,7 +31,7 @@ import org.sonar.api.web.WidgetPropertyType;
   @WidgetProperty(key = "colorMetric", type = WidgetPropertyType.METRIC, defaultValue = CoreMetrics.COVERAGE_KEY,
     options = {WidgetConstants.FILTER_OUT_NEW_METRICS, "type:PERCENT,RATING,LEVEL"}),
   @WidgetProperty(key = "heightInPercents", type = WidgetPropertyType.INTEGER, optional = true, defaultValue = "55"),
-  @WidgetProperty(key = "maxItems", type = WidgetPropertyType.INTEGER, defaultValue = "30")
+  @WidgetProperty(key = "maxItems", type = WidgetPropertyType.INTEGER, defaultValue = "100")
 })
 public class TreemapWidget extends CoreWidget {
   public TreemapWidget() {