aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthew Somerville <matthew@mysociety.org>2019-08-30 17:46:17 +0100
committerMatthew Somerville <matthew@mysociety.org>2019-08-30 18:26:16 +0100
commitf472f1a59ede8690da3a360b6009629100ec771f (patch)
tree44557e13fc079074b941c6cc9be888d8bdb0011f
parent0cdcad50334b587b574748019a724cd9e8c79ddd (diff)
Fix display of single group name in admin form.
-rw-r--r--templates/web/base/admin/bodies/contact-form.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/web/base/admin/bodies/contact-form.html b/templates/web/base/admin/bodies/contact-form.html
index 312b6ab96..bc2f5dde3 100644
--- a/templates/web/base/admin/bodies/contact-form.html
+++ b/templates/web/base/admin/bodies/contact-form.html
@@ -145,7 +145,7 @@ as well.") %]
<button type="button" class="btn btn--small js-group-item-add">[% loc('Add group') %]</button>
</p>
[% ELSE %]
- <input class="form-control" type="text" name="group" value="[% contact.extra.group | html %]" size="30">
+ <input class="form-control" type="text" name="group" value="[% contact.extra.group.join(',') | html %]" size="30">
[% END %]
</label>
</p>