aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthew Somerville <matthew@mysociety.org>2019-10-11 11:01:41 +0100
committerMatthew Somerville <matthew@mysociety.org>2019-10-11 11:01:43 +0100
commita7854f0eef8386f0f880c75947b76f13d0b59079 (patch)
tree7197f20f4032ec025f7ff24bc248a0d11e77042c
parent82c40f8d69b968a1a780fe76128f5c7603adf92d (diff)
[fixmystreet.com] Fix ward in summary drop-down.
-rw-r--r--templates/web/fixmystreet.com/reports/summary.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/web/fixmystreet.com/reports/summary.html b/templates/web/fixmystreet.com/reports/summary.html
index de340e5fd..70f7c10d1 100644
--- a/templates/web/fixmystreet.com/reports/summary.html
+++ b/templates/web/fixmystreet.com/reports/summary.html
@@ -70,7 +70,7 @@
<select class="form-control" id="area" name="area">
<option value="">[% body.name %]</option>
[% FOR w IN children.values.sort('name') %]
- <option value="[% w.id %]"[% ' selected' IF w.id == ward %]>[% w.name %]</option>
+ <option value="[% w.id %]"[% ' selected' IF w.id == ward.0 %]>[% w.name %]</option>
[% END %]
</select>
</p>