web/views/morgue.erb in sidekiq-6.2.1 vs web/views/morgue.erb in sidekiq-6.2.2
- old
+ new
@@ -12,11 +12,11 @@
<% if @dead.size > 0 %>
<form action="<%= root_path %>morgue" method="post">
<%= csrf_tag %>
<div class="table_container">
- <table class="table table-striped table-bordered">
+ <table class="table table-striped table-bordered table-hover">
<thead>
<tr>
<th class="table-checkbox checkbox-column">
<label>
<input type="checkbox" class="check_all" />
@@ -42,11 +42,11 @@
<td>
<a href="<%= root_path %>queues/<%= entry.queue %>"><%= entry.queue %></a>
</td>
<td>
<%= entry.display_class %>
- <%= display_tags(entry, "morgue") %>
+ <%= display_tags(entry, "dead") %>
</td>
<td>
<div class="args"><%= display_args(entry.display_args) %></div>
</td>
<td>
@@ -56,21 +56,21 @@
</td>
</tr>
<% end %>
</table>
</div>
- <input class="btn btn-primary btn-xs pull-left flip" type="submit" name="retry" value="<%= t('RetryNow') %>" />
- <input class="btn btn-danger btn-xs pull-left flip" type="submit" name="delete" value="<%= t('Delete') %>" />
+ <input class="btn btn-primary pull-left flip" type="submit" name="retry" value="<%= t('RetryNow') %>" />
+ <input class="btn btn-danger pull-left flip" type="submit" name="delete" value="<%= t('Delete') %>" />
</form>
<% unfiltered? do %>
<form action="<%= root_path %>morgue/all/delete" method="post">
<%= csrf_tag %>
- <input class="btn btn-danger btn-xs pull-right flip" type="submit" name="delete" value="<%= t('DeleteAll') %>" data-confirm="<%= t('AreYouSure') %>" />
+ <input class="btn btn-danger pull-right flip" type="submit" name="delete" value="<%= t('DeleteAll') %>" data-confirm="<%= t('AreYouSure') %>" />
</form>
<form action="<%= root_path %>morgue/all/retry" method="post">
<%= csrf_tag %>
- <input class="btn btn-danger btn-xs pull-right flip" type="submit" name="retry" value="<%= t('RetryAll') %>" data-confirm="<%= t('AreYouSure') %>" />
+ <input class="btn btn-danger pull-right flip" type="submit" name="retry" value="<%= t('RetryAll') %>" data-confirm="<%= t('AreYouSure') %>" />
</form>
<% end %>
<% else %>
<div class="alert alert-success"><%= t('NoDeadJobsFound') %></div>