Skip to content

Commit 39d2201

Browse files
committed
fix hover-highlight of changed features in upload dialog
fixes #10030
1 parent 61670be commit 39d2201

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,7 @@ _Breaking developer changes, which may affect downstream projects or sites that
5757
* Only consider feature with proper lifecycle tags in "past/futures" layer ([#10943])
5858
* Fix zoom level from resetting to the starting value when switching background imagery layer during the zoom transition
5959
* Fix invalid single-noded ways from being created by a _split_ operation under certain conditions when multiple nodes are selected ([#10997])
60+
* Properly highlight changed features when they are hovered in the upload dialog's list of changes ([#10030])
6061
#### :earth_asia: Localization
6162
#### :hourglass: Performance
6263
#### :mortar_board: Walkthrough / Help
@@ -67,6 +68,7 @@ _Breaking developer changes, which may affect downstream projects or sites that
6768
* Drop support for Node 18
6869

6970
[#9873]: https://github.com/openstreetmap/iD/issues/9873
71+
[#10030]: https://github.com/openstreetmap/iD/issues/10030
7072
[#10104]: https://github.com/openstreetmap/iD/issues/10104
7173
[#10492]: https://github.com/openstreetmap/iD/issues/10492
7274
[#10942]: https://github.com/openstreetmap/iD/pull/10942

modules/ui/sections/changes.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ export function uiSectionChanges(context) {
123123
.call(t.append('commit.download_changes'));
124124

125125

126-
function mouseover(d) {
126+
function mouseover(d3_event, d) {
127127
if (d.entity) {
128128
context.surface().selectAll(
129129
utilEntityOrMemberSelector([d.entity.id], context.graph())

0 commit comments

Comments
 (0)