aboutsummaryrefslogtreecommitdiffstats
path: root/server/sonar-web/src/main/js/apps
diff options
context:
space:
mode:
authorStas Vilchik <vilchiks@gmail.com>2016-05-13 10:03:16 +0200
committerStas Vilchik <vilchiks@gmail.com>2016-05-13 10:31:37 +0200
commit4875f1b6bbf2b87f2b8f468795ef12f1f0eb0f92 (patch)
treebe537a758f487c4e36f2b460dfe9306312eaf9a2 /server/sonar-web/src/main/js/apps
parent764047737320259114b53801451f598bfb8c0cda (diff)
downloadsonarqube-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.js2
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;