Skip to content

Commit

Permalink
Fix potential form ID discrepancy between search form text input and …
Browse files Browse the repository at this point in the history
…button (#3664)
  • Loading branch information
cmsetzer authored Nov 22, 2024
1 parent b6dee65 commit fa61418
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@
<div class="form-group fg-inline fg-search">
<input aria-label="Enter your search query here" type="text" name="q" value="{{ search_query|default:"" }}" placeholder="{{ search_placeholder|default:"Search" }}" class="search-query"{% if form_id %} form="{{ form_id }}"{% endif %}/>
</div>
<button aria-label="Submit" type="submit" name="submit" value="1" class="btn btn-default btn-inline btn-search"><span class="icon-search"></span></button>
<button aria-label="Submit" type="submit" name="submit" value="1" class="btn btn-default btn-inline btn-search"{% if form_id %} form="{{ form_id }}"{% endif %}><span class="icon-search"></span></button>
</fieldset>
</form>

0 comments on commit fa61418

Please sign in to comment.