diff options
author | Stas Vilchik <vilchiks@gmail.com> | 2015-11-16 17:38:09 +0100 |
---|---|---|
committer | Stas Vilchik <vilchiks@gmail.com> | 2015-11-16 17:38:15 +0100 |
commit | b9ffe1b974f2baa109f73f19e8aefd52ff39d88b (patch) | |
tree | 4acdad065c31e4e33a3f308db600b2f10738eaab | |
parent | c9428286f0c6989ff959129a089cb663e320fd0b (diff) | |
download | sonarqube-b9ffe1b974f2baa109f73f19e8aefd52ff39d88b.tar.gz sonarqube-b9ffe1b974f2baa109f73f19e8aefd52ff39d88b.zip |
SONAR-6908 Truncate the long file paths when traversing issues through the sources
-rw-r--r-- | server/sonar-web/src/main/js/apps/issues/templates/issues-workspace-header.hbs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/server/sonar-web/src/main/js/apps/issues/templates/issues-workspace-header.hbs b/server/sonar-web/src/main/js/apps/issues/templates/issues-workspace-header.hbs index e0316a8a61d..f33e6ef580d 100644 --- a/server/sonar-web/src/main/js/apps/issues/templates/issues-workspace-header.hbs +++ b/server/sonar-web/src/main/js/apps/issues/templates/issues-workspace-header.hbs @@ -16,7 +16,7 @@ </div> {{/if}} <div class="component-name-file"> - {{qualifierIcon qualifier}} <a href="{{dashboardUrl key}}" title="{{name}}">{{name}}</a> + {{qualifierIcon qualifier}} <a href="{{dashboardUrl key}}" title="{{name}}">{{fileFromPath name}}</a> </div> {{/with}} |