Sha256: 37d9774170a047046c480377181dfb3dfcb540422306c76b500bd4affc0e82cc
Contents?: true
Size: 1.01 KB
Versions: 15
Compression:
Stored size: 1.01 KB
Contents
<%= content_tag :div, class: spree_product_editor.css_classes, data: spree_product_editor.data_attributes do %> <%= element_form.fields_for(:ingredients, spree_product_editor.ingredient) do |f| %> <%= ingredient_label(spree_product_editor, :product_id) %> <%= f.text_field :product_id, value: spree_product_editor.product&.id, id: spree_product_editor.form_field_id(:product_id), class: 'alchemy_selectbox full_width' %> <% end %> <% end %> <script> $('#<%= spree_product_editor.form_field_id(:product_id) %>').alchemyProductSelect({ placeholder: "<%= Alchemy.t(:search_product, scope: 'solidus') %>", apiToken: "<%= current_alchemy_user.spree_api_key %>", baseUrl: "<%= spree.api_products_path %>", query_params: <%== spree_product_editor.settings[:query_params].to_json %>, <% if spree_product_editor.product %> initialSelection: { id: <%= spree_product_editor.product.id %>, text: "<%= spree_product_editor.product.name %>" } <% end %> }) </script>
Version data entries
15 entries across 15 versions & 1 rubygems