fix crash when collision boxes are drawn in debug mode

This commit is contained in:
Martin Raifer
2025-04-23 11:56:56 +02:00
parent bcdf6b9e71
commit 112c9264b2
+1 -1
View File
@@ -81,7 +81,7 @@ export function svgLabels(projection, context) {
function drawLinePaths(selection, labels, filter, classes) {
var paths = selection.selectAll('path')
var paths = selection.selectAll('path:not(.debug)')
.filter(d => filter(d.entity))
.data(labels, d => osmEntity.key(d.entity));