fix crash when searching for coordinates (#10679)

This commit is contained in:
Kyℓe Hensel
2025-01-15 21:10:12 +11:00
committed by GitHub
parent 9cd1ed4ef0
commit a585e7f946

View File

@@ -334,11 +334,15 @@ export function uiFeatureList(context) {
function mouseover(d3_event, d) {
if (d.id === -1) return;
utilHighlightEntities([d.id], true, context);
}
function mouseout(d3_event, d) {
if (d.id === -1) return;
utilHighlightEntities([d.id], false, context);
}