diff --git a/src/components/MapMaplibreGlFeaturePropertyPopup.tsx b/src/components/MapMaplibreGlFeaturePropertyPopup.tsx index 47ebec2c..d77ab0c1 100644 --- a/src/components/MapMaplibreGlFeaturePropertyPopup.tsx +++ b/src/components/MapMaplibreGlFeaturePropertyPopup.tsx @@ -32,10 +32,10 @@ function renderFeature(feature: InspectFeature, idx: number) { {Object.keys(feature.properties).map(propertyName => { const property = feature.properties[propertyName]; - return
-
{propertyName}
-
{displayValue(property)}
-
+ return
+
{propertyName}
+
{displayValue(property)}
+
})} }