Skip to content

Commit

Permalink
"Bootstrap 5 Migration - Rebuilt diffs"
Browse files Browse the repository at this point in the history
  • Loading branch information
biyeun committed Jan 31, 2025
1 parent 6fd62f7 commit cb274e9
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,12 @@
- placeholder="{{ select.placeholder }}"
- name="{{ slug }}"></select>
+ <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 }}"
+ data-bind="
+ ptions: select_params,
+ options: select_params,
+ optionsText: 'text',
+ optionsValue: 'val',
+ selectedOptions: current_selection
Expand All @@ -35,7 +35,7 @@
- placeholder="{{ select.placeholder }}"
- name="{{ slug }}"></select>
+ <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 @@ -17,7 +17,7 @@
- name="{{ slug }}"></select>
+ <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 @@ -35,7 +35,7 @@
- name="{{ slug }}"></select>
+ <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 cb274e9

Please sign in to comment.