mirror of
https://framagit.org/les/gancio.git
synced 2025-01-31 16:42:22 +01:00
allowgeoloc: trim placename before submit as issue 189 reported
This commit is contained in:
parent
ddf5f295d3
commit
6a7205ed34
1 changed files with 1 additions and 1 deletions
|
@ -212,7 +212,7 @@ export default {
|
|||
if (this.event.place.id) {
|
||||
formData.append('place_id', this.event.place.id)
|
||||
}
|
||||
formData.append('place_name', this.event.place.name)
|
||||
formData.append('place_name', this.event.place.name.trim())
|
||||
formData.append('place_address', this.event.place.address)
|
||||
formData.append('place_latitude', this.event.place.latitude)
|
||||
formData.append('place_longitude', this.event.place.longitude)
|
||||
|
|
Loading…
Reference in a new issue