Replace suburb with town on "thank you for editing near"

(closes #4989)
This commit is contained in:
Bryan Housel
2018-05-13 16:30:12 -04:00
parent 644985c8e3
commit de718002b9
+1 -1
View File
@@ -502,7 +502,7 @@ export function modeSave(context) {
var parts = [];
var addr = result.address;
var city = addr && (addr.suburb || addr.city || addr.county);
var city = addr && (addr.town || addr.city || addr.county);
if (city) parts.push(city);
var region = addr && (addr.state || addr.country);
if (region) parts.push(region);