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

feat(user): Update to v1.1 - OEL-1538 #345

Merged
merged 6 commits into from
May 5, 2022
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
4 changes: 2 additions & 2 deletions src/compositions/bcl-group/group-landing.html.twig
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@
<h2 class="mb-3 pb-2">{{ contact.title }}</h2>
{% if contact.profiles is not empty and contact.profiles is iterable %}
{% for _profile in contact.profiles %}
{% include '@oe-bcl/bcl-user/user-view-compact.html.twig' with _profile only %}
{% include '@oe-bcl/bcl-user/user-compact.html.twig' with _profile only %}
{% endfor %}
{% endif %}
{% if contact.more_link is not empty %}
Expand All @@ -83,7 +83,7 @@
<h2 class="mt-4 mt-md-0 mb-4 pb-2">{{ members.title}}</h2>
{% if members.profiles is not empty and members.profiles is iterable %}
{% for _profile in members.profiles %}
{% include '@oe-bcl/bcl-user/user-view-compact.html.twig' with _profile only %}
{% include '@oe-bcl/bcl-user/user-compact.html.twig' with _profile only %}
{% endfor %}
{% endif %}
{% if members.more_link is not empty %}
Expand Down
Loading