From f06b3bc853c8e3b1edb06311a2525a279d532c3e Mon Sep 17 00:00:00 2001 From: Stas Vilchik Date: Mon, 18 Apr 2016 10:58:49 +0200 Subject: [PATCH] fix bubble chart configuration --- .../src/main/js/apps/component-measures/config/bubbles.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/server/sonar-web/src/main/js/apps/component-measures/config/bubbles.js b/server/sonar-web/src/main/js/apps/component-measures/config/bubbles.js index a9b0702c0a3..63d2f7c6001 100644 --- a/server/sonar-web/src/main/js/apps/component-measures/config/bubbles.js +++ b/server/sonar-web/src/main/js/apps/component-measures/config/bubbles.js @@ -21,8 +21,8 @@ const bubblesConfig = { 'Reliability': { x: 'ncloc', y: 'reliability_remediation_effort', size: 'bugs' }, 'Security': { x: 'ncloc', y: 'security_remediation_effort', size: 'vulnerabilities' }, 'Maintainability': { x: 'ncloc', y: 'sqale_index', size: 'code_smells' }, - 'Tests': { x: 'complexity', y: 'coverage', size: 'uncovered_lines' }, - 'Duplication': { x: 'ncloc', y: 'duplicated_lines', size: 'duplicated_blocks' } + 'Coverage': { x: 'complexity', y: 'coverage', size: 'uncovered_lines' }, + 'Duplications': { x: 'ncloc', y: 'duplicated_lines', size: 'duplicated_blocks' } }; export default bubblesConfig; -- 2.39.5