]> source.dussan.org Git - sonarqube.git/commitdiff
SONAR-4303 display qualifier icon
authorSimon Brandhof <simon.brandhof@gmail.com>
Tue, 4 Jun 2013 14:27:30 +0000 (16:27 +0200)
committerSimon Brandhof <simon.brandhof@gmail.com>
Tue, 4 Jun 2013 14:28:49 +0000 (16:28 +0200)
sonar-server/src/main/webapp/WEB-INF/app/helpers/application_helper.rb
sonar-server/src/main/webapp/WEB-INF/app/views/issue/_show.html.erb

index 732cfb2edabb5584c2f6c5f2f46efd3cb984f71d..9d7bd8d49917ae1b3bbc5df90e344ef9768bb53d 100644 (file)
@@ -93,7 +93,6 @@ module ApplicationHelper
       end
   end
 
-  # TODO this method should be moved in resourceable.rb
   def qualifier_icon(object)
     qualifier=(object.respond_to?('qualifier') ? object.qualifier : object.to_s)
     if qualifier
index 80481b8423d5a020df92359d8dd7b4b8d0f11269..8bbd6ce76fdb4f5102763f5342d3c194a9fc55a6 100644 (file)
@@ -11,6 +11,7 @@
   <% end %>
   <span class="h1">
     <% if component %>
+    <%= qualifier_icon(component) -%>
     <a href="<%= ApplicationController.root_context -%>/resource/index/<%= component.key() -%>?layout=false&tab=issues"
        onclick="window.open(this.href,'resource-<%= component.key().parameterize -%>','height=800,width=900,scrollbars=1,resizable=1');return false;"><%= h component.longName() -%></a>
     <% else %>