-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
IBX-7147: Fixed issue where multiple Encore entries are applied to ES…
…I fragments (#1003)
- Loading branch information
Showing
3 changed files
with
10 additions
and
3 deletions.
There are no files selected for viewing
4 changes: 3 additions & 1 deletion
4
src/bundle/Resources/views/themes/admin/ui/dashboard/block/all.html.twig
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> |
4 changes: 3 additions & 1 deletion
4
src/bundle/Resources/views/themes/admin/ui/dashboard/block/me.html.twig
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters