From fd399de9d79a84d017ee4d74a77ca55dde1f609a Mon Sep 17 00:00:00 2001 From: Bryan Housel Date: Tue, 4 Jul 2017 01:26:47 -0400 Subject: [PATCH] Fix changeset URL --- modules/ui/panels/history.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/ui/panels/history.js b/modules/ui/panels/history.js index f6595c77f..127628e57 100644 --- a/modules/ui/panels/history.js +++ b/modules/ui/panels/history.js @@ -72,7 +72,7 @@ export function uiPanelHistory(context) { links .append('a') .attr('class', 'changeset-osm-link') - .attr('href', context.connection().userURL(entity.changeset)) + .attr('href', context.connection().changesetURL(entity.changeset)) .attr('target', '_blank') .attr('tabindex', -1) .text('OSM');