diff options
author | Stas Vilchik <vilchiks@gmail.com> | 2016-05-13 10:03:16 +0200 |
---|---|---|
committer | Stas Vilchik <vilchiks@gmail.com> | 2016-05-13 10:31:37 +0200 |
commit | 4875f1b6bbf2b87f2b8f468795ef12f1f0eb0f92 (patch) | |
tree | be537a758f487c4e36f2b460dfe9306312eaf9a2 /server/sonar-web/src/main/js/apps | |
parent | 764047737320259114b53801451f598bfb8c0cda (diff) | |
download | sonarqube-4875f1b6bbf2b87f2b8f468795ef12f1f0eb0f92.tar.gz sonarqube-4875f1b6bbf2b87f2b8f468795ef12f1f0eb0f92.zip |
fix display of UTS paths on measures page
Diffstat (limited to 'server/sonar-web/src/main/js/apps')
-rw-r--r-- | server/sonar-web/src/main/js/apps/component-measures/details/drilldown/ComponentCell.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/server/sonar-web/src/main/js/apps/component-measures/details/drilldown/ComponentCell.js b/server/sonar-web/src/main/js/apps/component-measures/details/drilldown/ComponentCell.js index 8ff7b1d04ee..cad8f0d7fb4 100644 --- a/server/sonar-web/src/main/js/apps/component-measures/details/drilldown/ComponentCell.js +++ b/server/sonar-web/src/main/js/apps/component-measures/details/drilldown/ComponentCell.js @@ -42,7 +42,7 @@ const ComponentCell = ({ component, isSelected, onClick }) => { let head = ''; let tail = component.name; - if (['DIR', 'FIL', 'CLA'].includes(component.qualifier)) { + if (['DIR', 'FIL', 'UTS'].includes(component.qualifier)) { const parts = splitPath(component.path); head = parts.head; tail = parts.tail; |