Skip to content

Commit

Permalink
Merge pull request #25 from tienvx/fix-extends-wrong-form-theme
Browse files Browse the repository at this point in the history
Fix extends wrong form theme
  • Loading branch information
tienvx committed Oct 11, 2021
2 parents e0bdf9b + cbbf5e9 commit ac944a6
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/Resources/views/bootstrap_3_layout.html.twig
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{% use "bootstrap_base_layout.html.twig" %}
{% use "@CollectionJs/bootstrap_base_layout.html.twig" %}

{% block collection_js_accordion %}
<div class="panel-group collection-js-root" data-prototype="{{ form_widget(prototype) | e }}" role="tablist" aria-multiselectable="true">
Expand Down
2 changes: 1 addition & 1 deletion src/Resources/views/bootstrap_4_layout.html.twig
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{% use "bootstrap_base_layout.html.twig" %}
{% use "@CollectionJs/bootstrap_base_layout.html.twig" %}

{% block collection_js_accordion %}
<div class="collection-js-root" data-prototype="{{ form_widget(prototype) | e }}">
Expand Down
2 changes: 1 addition & 1 deletion src/Resources/views/bootstrap_5_layout.html.twig
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{% use "bootstrap_base_layout.html.twig" %}
{% use "@CollectionJs/bootstrap_base_layout.html.twig" %}

{% block collection_js_accordion %}
<div class="accordion collection-js-root" data-prototype="{{ form_widget(prototype) | e }}">
Expand Down
2 changes: 1 addition & 1 deletion src/Resources/views/bootstrap_base_layout.html.twig
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{% use "form_div_layout.html.twig" %}
{% use "@CollectionJs/form_div_layout.html.twig" %}

{% block collection_js_add_button %}
<button type="button" class="btn btn-link collection-js-add-btn">
Expand Down

0 comments on commit ac944a6

Please sign in to comment.