У меня проблема с удалением товара из корзины в приложении Spree.У меня есть корзина, и есть частичное _line_item.html.erb:
<%= order_form.fields_for :line_items, line_item do |item_form| %>
<tr class="first odd">
<td class="image"><a class="product-image" title="Sample Product" href="#/women-s-crepe-printed-black/">
<% if variant.images.length == 0 %>
<%= link_to small_image(variant.product), variant.product %>
<% else %>
<%= link_to image_tag(variant.images.first.attachment.url(:small)), variant.product %>
<% end %>
</td>
<td><h2 class="product-name">
<%= link_to line_item.name, product_path(variant.product) %>
</h2>
</td>
<td class="a-center"><a title="Edit item parameters" class="edit-bnt" href="#configure/id/15945/"></a></td>
<td class="a-right"><span class="cart-price"> <span class="price">
<%= line_item.single_money.to_html %></span> </span>
</td>
<td class="a-center movewishlist">
<%= item_form.number_field :quantity, min: 0, class: "form-control line_item_quantity", size: 5 %>
</td>
<td class="a-right movewishlist"><span class="cart-price"> <span class="price">
<%= line_item.display_amount.to_html unless line_item.quantity.nil? %></span> </span>
</td>
<td class="a-center last cart-item-delete ">
<%= link_to content_tag(:span, '', class: 'glyphicon glyphicon-minus-sign'), '#', class: 'delete', id: "delete_#{dom_id(line_item)}" %>
</td>
</tr>
<% end %>
Последняя ячейка таблицы относится к кнопке удаления товара из корзины, но при нажатии на нее ничего не происходит с этой корзиной
<%= link_to content_tag(:span, '', class: 'glyphicon glyphicon-minus-sign'), '#', class: 'delete', id: "delete_#{dom_id(line_item)}" %>