From 78111955ddf34b617bf415d049b42b7fab8dbe0c Mon Sep 17 00:00:00 2001 From: SilentSpike Date: Tue, 5 Feb 2019 21:06:19 +0000 Subject: [PATCH] Fix user URL on ImproveOSM comments --- modules/ui/improveOSM_comments.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/ui/improveOSM_comments.js b/modules/ui/improveOSM_comments.js index 14caa30d7..490d7b5d9 100644 --- a/modules/ui/improveOSM_comments.js +++ b/modules/ui/improveOSM_comments.js @@ -46,7 +46,7 @@ export function uiImproveOsmComments() { .each(function(d) { var selection = d3_select(this); var osm = services.osm; - if (osm && d.user) { + if (osm && d.username) { selection = selection .append('a') .attr('class', 'comment-author-link')