]> source.dussan.org Git - sonarqube.git/commitdiff
display component key in tooltip on code page
authorStas Vilchik <vilchiks@gmail.com>
Mon, 22 Feb 2016 10:10:36 +0000 (11:10 +0100)
committerStas Vilchik <vilchiks@gmail.com>
Mon, 22 Feb 2016 10:10:36 +0000 (11:10 +0100)
server/sonar-web/src/main/js/apps/code/components/ComponentName.js

index fff2478cfe34c31bac37ec6018259e1cab9a18c8..b681ebcd1309426c4ee76f5ca701a8b6183cb3ee 100644 (file)
@@ -28,9 +28,9 @@ import { getComponentUrl } from '../../../helpers/urls';
 function getTooltip (component) {
   const isFile = component.qualifier === 'FIL' || component.qualifier === 'UTS';
   if (isFile && component.path) {
-    return component.path;
+    return component.path + '\n\n' + component.key;
   } else {
-    return component.name;
+    return component.name + '\n\n' + component.key;
   }
 }