From 6bdb59c7d3942466e71af1a53bde665a6bdf3683 Mon Sep 17 00:00:00 2001 From: Quincy Morgan Date: Wed, 27 Feb 2019 14:53:22 -0500 Subject: [PATCH] Fix lint errors --- modules/ui/modes.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/ui/modes.js b/modules/ui/modes.js index 159effa1f..ea15f1199 100644 --- a/modules/ui/modes.js +++ b/modules/ui/modes.js @@ -109,7 +109,7 @@ export function uiModes(context) { }); var tooltipTitleID = 'modes.add_preset.title'; if (relevantMatchingGeometry.length !== 1) { - tooltipTitleID = 'modes.add_preset.' + d.geom + '.title' + tooltipTitleID = 'modes.add_preset.' + d.geom + '.title'; } var favoriteMode = { id: markerClass, @@ -173,7 +173,7 @@ export function uiModes(context) { .geometry(d.geometry) .preset(d.preset) .sizeClass('small') - ) + ); } else { d3_select(this) .call(svgIcon(d.icon || '#iD-icon-' + d.button));