diff --git a/backend/app/views/spree/admin/payments/_list.html.erb b/backend/app/views/spree/admin/payments/_list.html.erb index 4500ed72c9c..2e808410793 100644 --- a/backend/app/views/spree/admin/payments/_list.html.erb +++ b/backend/app/views/spree/admin/payments/_list.html.erb @@ -58,7 +58,7 @@ <% allowed_actions = payment.actions.select { |a| can?(a.to_sym, payment) } %> <% allowed_actions.each do |action| %> <% if action == 'credit' %> - <%= link_to_with_icon 'reply', t('spree.refund'), new_admin_order_payment_refund_path(@order, payment), no_text: true %> + <%= link_to_with_icon 'mail-reply', t('spree.actions.refund'), new_admin_order_payment_refund_path(@order, payment), no_text: true %> <% elsif action == 'capture' && !@order.completed? %> <%# no capture prior to completion. payments get captured when the order completes. %> <% else %> diff --git a/backend/app/views/spree/admin/refunds/new.html.erb b/backend/app/views/spree/admin/refunds/new.html.erb index 4c883ff9fde..09a202108cb 100644 --- a/backend/app/views/spree/admin/refunds/new.html.erb +++ b/backend/app/views/spree/admin/refunds/new.html.erb @@ -10,14 +10,16 @@