Fix map data style options tooltip keyboard shortcuts (close #7778)

This commit is contained in:
Quincy Morgan
2020-07-13 15:28:37 -04:00
parent 223137cc6c
commit 0112547c89
+1 -1
View File
@@ -53,7 +53,7 @@ export function uiSectionMapStyleOptions(context) {
.keys(function(d) {
var key = (d === 'wireframe' ? t('area_fill.wireframe.key') : null);
if (d === 'highlight_edits') key = t('map_data.highlight_edits.key');
return [key];
return key ? [key] : null;
})
.placement('top')
);