Pacify eslint

(I really need to start running npm test more often before pushing)
This commit is contained in:
SilentSpike
2019-02-05 20:19:54 +00:00
parent f7bef29b92
commit 5fc87fb0a4

View File

@@ -22,7 +22,7 @@ export function uiImproveOsmComments() {
// must retrieve comments from API before they can be displayed
services.improveOSM.getComments(_error, function(err, d) {
var commentEnter = comments.selectAll('.comment')
.data(_error.comments)
.data(d.comments)
.enter()
.append('div')
.attr('class', 'comment');
@@ -55,7 +55,7 @@ export function uiImproveOsmComments() {
.attr('target', '_blank');
}
selection
.text(function(d) { return d.username });
.text(function(d) { return d.username; });
});
metadataEnter