diff options
author | Julien Lancelot <julien.lancelot@sonarsource.com> | 2016-05-12 15:30:56 +0200 |
---|---|---|
committer | Julien Lancelot <julien.lancelot@sonarsource.com> | 2016-05-13 11:14:38 +0200 |
commit | aac58f3d481f23639a900489cd52857c0f16b1b2 (patch) | |
tree | dbfd4deacb14e67ebac379b1e66c65baca3ce44e /server/sonar-web | |
parent | 8d727d037967e6d2a3c6a998e48f3ebcee6059b0 (diff) | |
download | sonarqube-aac58f3d481f23639a900489cd52857c0f16b1b2.tar.gz sonarqube-aac58f3d481f23639a900489cd52857c0f16b1b2.zip |
SONAR-6696 Replace event description by name in history page
Event description is no more computed since 5.2, so the name is used instead (even if it contains less information about the change)
Diffstat (limited to 'server/sonar-web')
-rw-r--r-- | server/sonar-web/src/main/webapp/WEB-INF/app/views/project/history.html.erb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/server/sonar-web/src/main/webapp/WEB-INF/app/views/project/history.html.erb b/server/sonar-web/src/main/webapp/WEB-INF/app/views/project/history.html.erb index 42952020d52..a3bce339e61 100644 --- a/server/sonar-web/src/main/webapp/WEB-INF/app/views/project/history.html.erb +++ b/server/sonar-web/src/main/webapp/WEB-INF/app/views/project/history.html.erb @@ -143,7 +143,7 @@ </td> <td class="thin nowrap"> - <%= image_tag "event_profile.png", :alt => message('project_history.col.profile') + ": " + profile_event.description_text if profile_event -%> + <%= image_tag "event_profile.png", :alt => message('project_history.col.profile') + ": " + profile_event.name if profile_event -%> </td> <td class="thin nowrap text-right" style="padding-left:10px; padding-right:10px"> |