diff options
author | Jean-Baptiste Lievremont <jean-baptiste.lievremont@sonarsource.com> | 2013-10-15 15:29:11 +0200 |
---|---|---|
committer | Jean-Baptiste Lievremont <jean-baptiste.lievremont@sonarsource.com> | 2013-10-15 15:29:11 +0200 |
commit | 085d2ae893418581ba1a5590169ba0597c860611 (patch) | |
tree | 56ad241fc03ce79d970d2faeec2f2a6d0407b1c3 /plugins | |
parent | 750f4400aea1d6197195a4214c7c1193de5c6bc3 (diff) | |
download | sonarqube-085d2ae893418581ba1a5590169ba0597c860611.tar.gz sonarqube-085d2ae893418581ba1a5590169ba0597c860611.zip |
SONAR-4416 Change default height of timeline widget to accomodate for change in render (space reservation)
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/sonar-core-plugin/src/main/java/org/sonar/plugins/core/widgets/TimelineWidget.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/sonar-core-plugin/src/main/java/org/sonar/plugins/core/widgets/TimelineWidget.java b/plugins/sonar-core-plugin/src/main/java/org/sonar/plugins/core/widgets/TimelineWidget.java index f9f89b071ce..b35f91a8dbe 100644 --- a/plugins/sonar-core-plugin/src/main/java/org/sonar/plugins/core/widgets/TimelineWidget.java +++ b/plugins/sonar-core-plugin/src/main/java/org/sonar/plugins/core/widgets/TimelineWidget.java @@ -31,7 +31,7 @@ import org.sonar.api.web.WidgetPropertyType; @WidgetProperty(key = "metric2", type = WidgetPropertyType.METRIC, options = {WidgetConstants.FILTER_OUT_NEW_METRICS}), @WidgetProperty(key = "metric3", type = WidgetPropertyType.METRIC, options = {WidgetConstants.FILTER_OUT_NEW_METRICS}), @WidgetProperty(key = "hideEvents", type = WidgetPropertyType.BOOLEAN), - @WidgetProperty(key = "chartHeight", type = WidgetPropertyType.INTEGER, defaultValue = "80") + @WidgetProperty(key = "chartHeight", type = WidgetPropertyType.INTEGER, defaultValue = "180") }) public class TimelineWidget extends CoreWidget { public TimelineWidget() { |