diff --git a/components/MapComponent.js b/components/MapComponent.js
index 1fa4321c7..ff9cfe2b3 100644
--- a/components/MapComponent.js
+++ b/components/MapComponent.js
@@ -701,7 +701,7 @@ const MapComponent = ({ locations, onLocationUpdate }) => {
// Alle gefundenen Me-Werte zu einem String hinzufügen
matchingStatuses.forEach((status) => {
- additionalInfo += `
${status.Me} (${status.Na}) `;
+ additionalInfo += `
${status.Me} ( ${status.Na}) `;
});
const marker = L.marker([station.X, station.Y], {
@@ -724,7 +724,7 @@ const MapComponent = ({ locations, onLocationUpdate }) => {
marker
.bindPopup(
- `${station.LD_Name}
${station.Device}
${station.Area_Short} ${station.Area_Name}
${station.Location_Short} ${station.Location_Name}${additionalInfo}
`
+ `${station.LD_Name}
${station.Device}
${station.Area_Short} (${station.Area_Name})
${station.Location_Short} (${station.Location_Name})
${additionalInfo}
`
)
.openPopup();
});