diff options
author | Stas Vilchik <vilchiks@gmail.com> | 2014-10-06 14:55:20 +0200 |
---|---|---|
committer | Stas Vilchik <vilchiks@gmail.com> | 2014-10-06 16:00:00 +0200 |
commit | 9fe41004e589341258e9ae00304b360796bf7a81 (patch) | |
tree | fe1f3de19ad66a41a19415fefe68669c9988d484 /plugins/sonar-core-plugin | |
parent | 85cb8fddb945e224116930ea9b563b37c196abf8 (diff) | |
download | sonarqube-9fe41004e589341258e9ae00304b360796bf7a81.tar.gz sonarqube-9fe41004e589341258e9ae00304b360796bf7a81.zip |
SONAR-5584 Increase the default limit of the treemap components
Diffstat (limited to 'plugins/sonar-core-plugin')
-rw-r--r-- | plugins/sonar-core-plugin/src/main/java/org/sonar/plugins/core/widgets/TreemapWidget.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/sonar-core-plugin/src/main/java/org/sonar/plugins/core/widgets/TreemapWidget.java b/plugins/sonar-core-plugin/src/main/java/org/sonar/plugins/core/widgets/TreemapWidget.java index 615c9975883..e0787c4c5a8 100644 --- a/plugins/sonar-core-plugin/src/main/java/org/sonar/plugins/core/widgets/TreemapWidget.java +++ b/plugins/sonar-core-plugin/src/main/java/org/sonar/plugins/core/widgets/TreemapWidget.java @@ -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() { |