Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

IBX-7147: Fixed issue where multiple Encore entries are applied to ESI fragments #1003

Merged
merged 1 commit into from
Nov 23, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
{% trans_default_domain 'ibexa_dashboard' %}

{% set parameters = parameters|default({})|merge({ hide_toggler: true }) %}

<div class="card border-light ibexa-card ibexa-card--no-padding mb-4">
<div class="ibexa-card__title">{{ 'everyone'|trans|desc('Common content') }}</div>
<div class="ibexa-card__body">
{{ ibexa_render_component_group('dashboard-all-tab-groups', { hide_toggler: true }) }}
{{ ibexa_render_component_group('dashboard-all-tab-groups', parameters) }}
</div>
</div>
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
{% trans_default_domain 'ibexa_dashboard' %}

{% set parameters = parameters|default({})|merge({ hide_toggler: true }) %}

<div class="card border-light ibexa-card ibexa-card--no-padding my-4">
<div class="ibexa-card__title">{{ 'me'|trans|desc('My content') }}</div>
<div class="ibexa-card__body">
{{ ibexa_render_component_group('dashboard-my-tab-groups', { hide_toggler: true }) }}
{{ ibexa_render_component_group('dashboard-my-tab-groups', parameters) }}
</div>
</div>
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,8 @@
} %}

{% block javascripts %}
{{ encore_entry_script_tags('ibexa-admin-ui-tabs-js', null, 'ibexa') }}
{% set render_encore_entry = render_encore_entry is defined ? render_encore_entry : true %}
{% if render_encore_entry %}
{{ encore_entry_script_tags('ibexa-admin-ui-tabs-js', null, 'ibexa') }}
{% endif %}
{% endblock %}
Loading