diff --git a/CHANGELOG.md b/CHANGELOG.md index a5a796077..2ffd338aa 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -47,7 +47,8 @@ _Breaking developer changes, which may affect downstream projects or sites that * Fix selection of best background source when starting on a zoomed-out view ([#9325]) * Fix leaking of localized strings in combo fields when taginfo service is unavailable ([#9342]) * Keep tags when changing presets if the new preset has a field for it ([#9341], [#9104]) -* Skip unsupported or invalid turn restriction relations instead of assuming they are a "no_*" restriction ([#9337]) +* Skip unsupported or invalid turn restriction relations instead of assuming they are a `no_*` restriction ([#9337]) +* Fix crash when conflict resolver is opened ([#9345]) #### :rocket: Presets * Support tagging schema v5 ([#9320]): * Add new field type `colour` ([schema-builder#38], [#8782]) @@ -65,6 +66,7 @@ _Breaking developer changes, which may affect downstream projects or sites that [#9337]: https://github.com/openstreetmap/iD/issues/9337 [#9341]: https://github.com/openstreetmap/iD/issues/9341 [#9342]: https://github.com/openstreetmap/iD/issues/9342 +[#9345]: https://github.com/openstreetmap/iD/issues/9345 [schema-builder#38]: https://github.com/ideditor/schema-builder/pull/38 # 2.22.0 diff --git a/modules/ui/conflicts.js b/modules/ui/conflicts.js index bd6400e6d..52b1eaf7c 100644 --- a/modules/ui/conflicts.js +++ b/modules/ui/conflicts.js @@ -223,7 +223,7 @@ export function uiConflicts(context) { container .call(showConflict, index + sign); }) - .call(function(d) { t.append('save.conflict.' + d)(d3_select(this)); }); + .each(function(d) { t.append('save.conflict.' + d)(d3_select(this)); }); }