From df10e09037699cec39658fc3360d89545ad63784 Mon Sep 17 00:00:00 2001 From: Bryan Housel Date: Sat, 25 Aug 2018 15:12:23 -0400 Subject: [PATCH] Use tooltip 'top' for consistency with other things on this list --- modules/ui/map_data.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/ui/map_data.js b/modules/ui/map_data.js index 72f7f1078..e886bf231 100644 --- a/modules/ui/map_data.js +++ b/modules/ui/map_data.js @@ -262,7 +262,7 @@ export function uiMapData(context) { .append('label') .each(function(d) { d3_select(this).call( - tooltip().title(d.tooltip).placement('bottom') + tooltip().title(d.tooltip).placement('top') ); });