Skip to content

Commit b49c11b

Browse files
committed
Merge branch 'allow-null-group-assignment' into issue-#867
2 parents 87e59cb + b26b705 commit b49c11b

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

app/sprinkles/admin/templates/forms/user.html.twig

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@
2424
{% if 'group' in form.fields.disabled %}
2525
<input type="text" class="form-control" name="theme" value="{{user.group.name}}" disabled>
2626
{% else %}
27-
<select id="input-group" class="form-control js-select2-group" name="group_id">
28-
<option value="0" </option>
27+
<select id="input-group" class="form-control js-select2" name="group_id">
28+
<option value="0">No group</option>
2929
{% for group in groups %}
3030
<option value="{{group.id}}" {% if (group.id == user.group_id) %}selected{% endif %}>{{group.name}}</option>
3131
{% endfor %}

0 commit comments

Comments
 (0)