Fix address display
This commit is contained in:
parent
c73a1123d2
commit
bacfe7218f
1 changed files with 1 additions and 1 deletions
|
|
@ -782,7 +782,7 @@ function formatAddress(a) {
|
|||
if (a.number === "" && a.street === "") {
|
||||
return "no address provided";
|
||||
}
|
||||
return `$${a.number} $${a.street}, ${a.locality}`;
|
||||
return `${a.number} ${a.street}, ${a.locality}`;
|
||||
}
|
||||
|
||||
function formatDistance(meters) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue