app/views/spree/admin/zones/index.html.erb in spree_backend-4.2.7 vs app/views/spree/admin/zones/index.html.erb in spree_backend-4.3.0.rc1
- old
+ new
@@ -23,12 +23,14 @@
<% @zones.each do |zone| %>
<tr id="<%= spree_dom_id zone %>" data-hook="zones_row">
<td><%= zone.name %></td>
<td><%= zone.description %></td>
<td><%= active_badge(zone.default_tax?) %></td>
- <td class="actions actions-2 text-right">
- <%= link_to_edit(zone, no_text: true) if can? :edit, zone %>
- <%= link_to_delete(zone, no_text: true) if can? :delete, zone %>
+ <td class="actions">
+ <span class="d-flex justify-content-end">
+ <%= link_to_edit(zone, no_text: true) if can? :edit, zone %>
+ <%= link_to_delete(zone, no_text: true) if can? :delete, zone %>
+ </span>
</td>
</tr>
<% end %>
</tbody>
</table>