From 4875f1b6bbf2b87f2b8f468795ef12f1f0eb0f92 Mon Sep 17 00:00:00 2001 From: Stas Vilchik Date: Fri, 13 May 2016 10:03:16 +0200 Subject: [PATCH] fix display of UTS paths on measures page --- .../apps/component-measures/details/drilldown/ComponentCell.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- 2.39.5