aboutsummaryrefslogtreecommitdiffstats
path: root/plugins
diff options
context:
space:
mode:
authorJulien Lancelot <julien.lancelot@sonarsource.com>2014-03-21 08:31:53 +0100
committerJulien Lancelot <julien.lancelot@sonarsource.com>2014-03-21 08:32:02 +0100
commitd4222ae08975807f42dcba1afa7a7015d9bc89c9 (patch)
tree9322dd43d3149e0a4f7b72c588d00c625efbbfb8 /plugins
parent16b96d13932a7ed914dd239645766247f9866635 (diff)
downloadsonarqube-d4222ae08975807f42dcba1afa7a7015d9bc89c9.tar.gz
sonarqube-d4222ae08975807f42dcba1afa7a7015d9bc89c9.zip
Fix issue on debt pyramid due to renaming of debt.rootCharacteristics to debt.characteristics
Diffstat (limited to 'plugins')
-rw-r--r--plugins/sonar-core-plugin/src/main/resources/org/sonar/plugins/core/widgets/technical_debt_pyramid.html.erb2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/sonar-core-plugin/src/main/resources/org/sonar/plugins/core/widgets/technical_debt_pyramid.html.erb b/plugins/sonar-core-plugin/src/main/resources/org/sonar/plugins/core/widgets/technical_debt_pyramid.html.erb
index cb4b9b3f8a3..3665ca82d8b 100644
--- a/plugins/sonar-core-plugin/src/main/resources/org/sonar/plugins/core/widgets/technical_debt_pyramid.html.erb
+++ b/plugins/sonar-core-plugin/src/main/resources/org/sonar/plugins/core/widgets/technical_debt_pyramid.html.erb
@@ -1,7 +1,7 @@
<%
technical_debt = measure('sqale_index')
- root_characteristics = Internal.debt.rootCharacteristics().to_a
+ root_characteristics = Internal.debt.characteristics().to_a
should_display_diff_measures = dashboard_configuration.selected_period? && technical_debt.variation(dashboard_configuration.period_index)!=nil
if technical_debt.nil? || root_characteristics.empty?