diff --git a/web/_js/infoblock.js b/web/_js/infoblock.js index 4adbdc46..32f6cb29 100644 --- a/web/_js/infoblock.js +++ b/web/_js/infoblock.js @@ -50,7 +50,7 @@ function createInfoBlock(entry) { } let [x, y] = entry.center; - element.appendChild(createInfoParagraph("Position: ", `${Math.floor(x)}x${Math.floor(y)}`)); + element.appendChild(createInfoParagraph("Position: ", `${Math.floor(x)}, ${Math.floor(y)}`)); if(entry.path){ let area = calcPolygonArea(entry.path);