diff options
author | Stas Vilchik <vilchiks@gmail.com> | 2016-04-18 10:58:49 +0200 |
---|---|---|
committer | Stas Vilchik <vilchiks@gmail.com> | 2016-04-18 10:58:49 +0200 |
commit | f06b3bc853c8e3b1edb06311a2525a279d532c3e (patch) | |
tree | 7065b1deed6683726b693a0550d7803081394379 /server/sonar-web/src/main/js/apps/component-measures/config | |
parent | e9ba99d5f9f0ca3d879fd3e702b660a287d1339f (diff) | |
download | sonarqube-f06b3bc853c8e3b1edb06311a2525a279d532c3e.tar.gz sonarqube-f06b3bc853c8e3b1edb06311a2525a279d532c3e.zip |
fix bubble chart configuration
Diffstat (limited to 'server/sonar-web/src/main/js/apps/component-measures/config')
-rw-r--r-- | server/sonar-web/src/main/js/apps/component-measures/config/bubbles.js | 4 |
1 files 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; |