Show Sources column only when sowing all events

Thiago Talma 9 anos atrás
pai
commit
5c9b8b7f27
1 arquivos alterados com 6 adições e 2 exclusões
  1. 6 2
      app/views/events/index.html.erb

+ 6 - 2
app/views/events/index.html.erb

@@ -10,7 +10,9 @@
10 10
       <div class='table-responsive'>
11 11
         <table class='table table-striped events'>
12 12
           <tr>
13
-            <th>Source</th>
13
+            <% unless @agent %>
14
+                <th>Source</th>
15
+            <% end %>
14 16
             <th>Created</th>
15 17
             <th>Payload</th>
16 18
             <th></th>
@@ -19,7 +21,9 @@
19 21
         <% @events.each do |event| %>
20 22
           <% next unless event.agent %>
21 23
           <%= content_tag :tr, class: (highlighted?(event.id) ? 'hl' : nil) do %>
22
-            <td><%= link_to event.agent.name, agent_path(event.agent, return: request.fullpath) %></td>
24
+            <% unless @agent %>
25
+                <td><%= link_to event.agent.name, agent_path(event.agent, return: request.fullpath) %></td>
26
+            <% end %>
23 27
             <td title='<%= event.created_at %>'><%= time_ago_in_words event.created_at %> ago</td>
24 28
             <td class='payload'><%= truncate event.payload.to_json, :length => 90, :omission => "" %></td>
25 29
             <td>