mirror of
https://github.com/FoggedLens/iD.git
synced 2026-02-12 16:52:50 +00:00
fix crash when searching for coordinates (#10679)
This commit is contained in:
@@ -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);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user