Skip to content

Commit

Permalink
Fix extends wrong form theme
Browse files Browse the repository at this point in the history
  • Loading branch information
tienvx committed Oct 11, 2021
1 parent e0bdf9b commit cbbf5e9
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 cbbf5e9

Please sign in to comment.