app/views/spree/admin/reimbursements/edit.html.erb in spree_backend-3.0.0.rc4 vs app/views/spree/admin/reimbursements/edit.html.erb in spree_backend-3.0.0

- old
+ new

@@ -72,22 +72,22 @@ <th><%= Spree.t(:amount) %></th> </tr> </thead> <tbody> <% @reimbursement_objects.each do |reimbursement_object| %> - <tr id="<%= spree_dom_id(reimbursement_object) %>" data-hook="reimbursement_reimbursement_object_row"> + <tr data-hook="reimbursement_reimbursement_object_row"> <td><%= reimbursement_object.class.name.demodulize %></td> <td><%= reimbursement_object.description %></td> <td><%= reimbursement_object.display_amount %></td> </tr> <% end %> </tbody> </table> <% if @order.has_non_reimbursement_related_refunds? %> - <span class="alert alert-danger"> + <div class="alert alert-danger"> <%= "#{Spree.t('note')}: #{Spree.t('this_order_has_already_received_a_refund')}. #{Spree.t('make_sure_the_above_reimbursement_amount_is_correct')}." %> - </span> + </div> <% end %> <div class="form-actions" data-hook="reimburse-buttons"> <% if !@reimbursement.reimbursed? %> <%= button_to [:perform, :admin, @order, @reimbursement], { class: 'btn btn-primary', method: 'post' } do %>