Skip to content

Commit

Permalink
form-control > form-select for select fields
Browse files Browse the repository at this point in the history
  • Loading branch information
biyeun committed Jan 31, 2025
1 parent c14f536 commit 6fd62f7
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
{% block filter_content %}
{% if not endpoint %}
<select
class="{{ css_class }} form-control report-filter-multi-option"
class="{{ css_class }} form-select report-filter-multi-option"
name="{{ slug }}"
multiple="true"
placeholder="{{ select.placeholder }}"
Expand All @@ -18,7 +18,7 @@
></select>
{% else %}
<select
class="{{ css_class }} form-control report-filter-multi-option"
class="{{ css_class }} form-select report-filter-multi-option"
name="{{ slug }}"
placeholder="{{ select.placeholder }}"
data-endpoint="{% html_attr endpoint %}"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
{% if pagination.enabled %}
<select
id="{{ css_id }}"
class="input form-control report-filter-single-option-paginated w-100"
class="input form-select report-filter-single-option-paginated w-100"
name="{{ slug }}"
data-handler="{{ pagination.handler }}"
data-url="{{ pagination.url }}"
Expand All @@ -15,7 +15,7 @@
{% else %}
<select
id="{{ css_id }}"
class="report-filter-single-option w-100"
class="form-select report-filter-single-option w-100"
name="{{ slug }}"
data-select-options="{% html_attr select.options %}"
data-selected="{{ select.selected|default:'' }}"
Expand Down

0 comments on commit 6fd62f7

Please sign in to comment.