diff --git a/Logic/Osm/OsmObject.ts b/Logic/Osm/OsmObject.ts
index 07bc517cc2..c05a45cb53 100644
--- a/Logic/Osm/OsmObject.ts
+++ b/Logic/Osm/OsmObject.ts
@@ -385,19 +385,9 @@ export class OsmNode extends OsmObject {
let tags = this.TagsXML()
return (
- ' \n' +
- tags +
- " \n"
+ `
+${tags}
+`
)
}
@@ -445,16 +435,9 @@ export class OsmWay extends OsmObject {
}
return (
- ' \n" +
- nds +
- tags +
- " \n"
+ `
+${nds}${tags}
+`
)
}