diff --git a/modules/ui/sections/map_style_options.js b/modules/ui/sections/map_style_options.js index 61067e891..f22df182f 100644 --- a/modules/ui/sections/map_style_options.js +++ b/modules/ui/sections/map_style_options.js @@ -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') );