fix: bound detection QA to inference coverage
GeoIntel CI / docs-smoke (push) Canceled after 0s
GeoIntel CI / contract-smoke (push) Canceled after 0s

This commit is contained in:
Codex
2026-07-15 00:35:39 +02:00
parent 2f9898bc82
commit 0cad8fdf76
12 changed files with 159 additions and 45 deletions
+4 -4
View File
@@ -76,18 +76,18 @@ export function useMapWorkspaceState({
)
const mapLayerLabel = useMemo(() => {
if (changeDetectionGeoJson) {
return 'Change detection result'
return 'Veranderingsanalyse'
}
if (segmentationGeoJson) {
return 'Segmentation result'
return 'AI-segmentaties'
}
if (detectionGeoJson) {
return 'Detection result'
return 'AI-detecties'
}
if (datasetLayerActive && selectedDataset) {
return selectedDataset.name
}
return 'No active vector layer'
return 'Geen actieve kaartlaag'
}, [changeDetectionGeoJson, datasetLayerActive, detectionGeoJson, segmentationGeoJson, selectedDataset])
const mapFeatureCount = mapFeatureCollection?.features.length ?? 0
const areaFeatureCount = areaFeatureCollection?.features.length ?? 0