diff --git a/app/src/MaplibreMap.tsx b/app/src/MaplibreMap.tsx index a4f7b55..5041118 100644 --- a/app/src/MaplibreMap.tsx +++ b/app/src/MaplibreMap.tsx @@ -85,7 +85,9 @@ const FeaturesProperties = (props: { features: MapGeoJSONFeature[] }) => { {Object.entries(f.properties).map(([key, value], i) => ( {key} - {value} + + {typeof value === "boolean" ? JSON.stringify(value) : value} + ))}