diff --git a/js/ide.ts b/js/ide.ts
index 1c11ca05..2527f04a 100644
--- a/js/ide.ts
+++ b/js/ide.ts
@@ -1671,7 +1671,7 @@ class IDE {
.bind("click", () => {
const content =
`
${i18n.t("export.map_view.permalink")}
` +
- `Node` +
- ` ${feature.properties.id}` +
- ` ✏` +
+ ` ${feature.properties.id}` +
+ ` ✏` +
``;
else if (feature.properties.type == "way")
popup +=
`
`;
else if (feature.properties.type == "relation")
popup +=
``;
else
popup += `${feature.properties.type} #${feature.properties.id}
`;
@@ -115,7 +115,7 @@ export function featurePopupContent(feature: GeoJSON.Feature) {
}
popup += "";
$.each(feature.properties.relations, (k, v) => {
- popup += `- ${v["rel"]}`;
+ popup += `
- ${v["rel"]}`;
if (v.reltags && (v.reltags.name || v.reltags.ref || v.reltags.type))
popup += ` ${$.trim(
(v.reltags.type ? `${htmlentities(v.reltags.type)} ` : "") +
@@ -137,9 +137,9 @@ export function featurePopupContent(feature: GeoJSON.Feature) {
k = htmlentities(k);
v = htmlentities(v);
if (k == "user")
- v = `${v}`;
+ v = `${v}`;
if (k == "changeset")
- v = `${v}`;
+ v = `${v}`;
popup += `
- ${k} = ${v}
`;
});
popup += "
";
diff --git a/package.json b/package.json
index f822b63d..b2063b0e 100644
--- a/package.json
+++ b/package.json
@@ -1,8 +1,9 @@
{
"name": "overpass-turbo",
- "description": "A web based data mining tool for OpenStreetMap using Overpass API",
+ "version": "2.0.1",
+ "description": "A web based data mining tool for OpenHistoricalMap using Overpass API",
"homepage": "http://overpass-turbo.eu/",
- "repository": "git+https://github.com/tyrasd/overpass-turbo.git",
+ "repository": "git+https://github.com/OpenHistoricalMap/overpass-turbo.git",
"license": "MIT",
"scripts": {
"test": "yarn run test:eslint && yarn run test:style && yarn run test:vitest",