Skip to content

Commit

Permalink
πŸ› fix missing class
Browse files Browse the repository at this point in the history
  • Loading branch information
krmax44 committed Oct 2, 2023
1 parent 3496f49 commit 2663d19
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions froide/helper/templates/helper/search/multi_search.html
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{% load i18n %}

<form action="{% url "foirequest-list" %}" method="get">
<form action="{% url "foirequest-list" %}" method="get" class="froide-multi-search">
<div class="d-grid gap-2 d-md-flex">
<select class="form-select flex-grow-0 w-auto">
<select class="form-select flex-grow-0">
{% for search in searches %}
<option value="{{ search.url }}">
{{ search.title }}
Expand All @@ -12,7 +12,7 @@
<input
name="q"
type="search"
class="form-control"
class="form-control w-100"
placeholder="{% trans "Search term" %}" />
<button type="submit" class="btn btn-outline-primary text-nowrap">
<i class="fa fa-search"></i>
Expand Down

0 comments on commit 2663d19

Please sign in to comment.