Skip to content

Commit

Permalink
fix: Update name of prodcuts feild in search
Browse files Browse the repository at this point in the history
  • Loading branch information
petesfrench authored and samhotep committed Dec 4, 2024
1 parent b551aa0 commit b141737
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions templates/_search-form.html
Original file line number Diff line number Diff line change
Expand Up @@ -49,10 +49,10 @@
<select
id="product-select"
aria-labelledby="product"
name="product">
name="product_types">
<option value="">Any product</option>
{% for product in data.products %}
<option value="{{ product.slug }}" {% if product.slug in params.product %}selected{% endif %}>
<option value="{{ product.slug }}" {% if product.slug in params.product_types %}selected{% endif %}>
{{ product.name }}
</option>
{% endfor %}
Expand Down

0 comments on commit b141737

Please sign in to comment.