Browse Source

Indent with 2 spaces

Thiago Talma 9 years ago
parent
commit
0556374bcd
1 changed files with 2 additions and 2 deletions
  1. 2 2
      app/views/events/index.html.erb

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

@@ -11,7 +11,7 @@
         <table class='table table-striped events'>
           <tr>
             <% unless @agent %>
-                <th>Source</th>
+              <th>Source</th>
             <% end %>
             <th>Created</th>
             <th>Payload</th>
@@ -22,7 +22,7 @@
           <% next unless event.agent %>
           <%= content_tag :tr, class: (highlighted?(event.id) ? 'hl' : nil) do %>
             <% unless @agent %>
-                <td><%= link_to event.agent.name, agent_path(event.agent, return: request.fullpath) %></td>
+              <td><%= link_to event.agent.name, agent_path(event.agent, return: request.fullpath) %></td>
             <% end %>
             <td title='<%= event.created_at %>'><%= time_ago_in_words event.created_at %> ago</td>
             <td class='payload'><%= truncate event.payload.to_json, :length => 90, :omission => "" %></td>