From 7b4f4fd031b4f7a64be9ac935e9aa50e7062fe54 Mon Sep 17 00:00:00 2001 From: Bryan Housel Date: Fri, 10 Aug 2018 22:26:13 -0400 Subject: [PATCH] Fix note url link in history panel --- 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 249a2068e..133955577 100644 --- a/modules/ui/panels/history.js +++ b/modules/ui/panels/history.js @@ -165,7 +165,7 @@ export function uiPanelHistory(context) { .attr('class', 'view-history-on-osm') .attr('target', '_blank') .attr('tabindex', -1) - .attr('href', osm.noteURL(note.id)) + .attr('href', osm.noteURL(note)) .call(svgIcon('#iD-icon-out-link', 'inline')) .append('span') .text(t('info_panels.history.note_link_text'));