app/views/pg_hero/home/index_usage.html.erb in pghero-1.1.0 vs app/views/pg_hero/home/index_usage.html.erb in pghero-1.1.1
- old
+ new
@@ -3,19 +3,19 @@
<table class="table">
<thead>
<tr>
<th>Table</th>
- <th>% of Time Index Used</th>
- <th>Rows</th>
+ <th style="width: 30%;">% of Time Index Used</th>
+ <th style="width: 20%;">Rows</th>
</tr>
</thead>
<tbody>
<% @index_usage.each do |query| %>
<tr>
<td><%= query["table"] %></td>
- <td style="width: 30%;"><%= query["percent_of_times_index_used"] %></td>
- <td style="width: 20%;"><%= number_with_delimiter(query["rows_in_table"]) %></td>
+ <td><%= query["percent_of_times_index_used"] %></td>
+ <td><%= number_with_delimiter(query["rows_in_table"]) %></td>
</tr>
<% end %>
</tbody>
</table>
</div>