backoffice: remove blank space in sidebar map (#31289)

This commit is contained in:
Frédéric Péters 2019-03-11 21:42:17 +01:00
parent 22b514ef84
commit d32f772c11
1 changed files with 2 additions and 1 deletions

View File

@ -2150,7 +2150,8 @@ class FormBackOfficeStatusPage(FormStatusPage):
geoloc_value = formdata.geolocations[geoloc_key]
map_widget = MapWidget('geoloc_%s' % geoloc_key,
readonly=True,
value='%(lat)s;%(lon)s' % geoloc_value)
value='%(lat)s;%(lon)s' % geoloc_value,
render_br=False)
r += map_widget.render()
r += htmltext('</div>')