Skip to content

Commit

Permalink
Merge branch 'allow-null-group-assignment' into issue-#867
Browse files Browse the repository at this point in the history
  • Loading branch information
amosfolz committed Jul 11, 2019
2 parents b49c11b + ce4c507 commit 3467690
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/sprinkles/admin/templates/pages/user.html.twig
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@
<i class="fa fa-fw fa-bolt fa-lg text-yellow" title="{{translate('UNACTIVATED')}}"></i>
{% endif %}
</div>
<h4 class="text-muted text-center">{{user.user_name}}{% if 'group' not in fields.hidden %} • {{user.group.name}}{% endif %}</h4>
<h4 class="text-muted text-center">{{user.user_name}}{% if 'group' not in fields.hidden and user.group.name is not null %} • {{user.group.name}}{% endif %}</h4>

{% if 'email' not in fields.hidden %}
<hr>
Expand Down

0 comments on commit 3467690

Please sign in to comment.