From 3b3e17f95e74a50d5572febea64950d22ae8bf18 Mon Sep 17 00:00:00 2001 From: Nathan Reese Date: Tue, 11 Feb 2020 07:34:40 -0700 Subject: [PATCH] [Maps] do not disable other styling when symbol size is dynmaic (#57247) (#57304) --- .../layers/styles/vector/components/vector_style_editor.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/x-pack/legacy/plugins/maps/public/layers/styles/vector/components/vector_style_editor.js b/x-pack/legacy/plugins/maps/public/layers/styles/vector/components/vector_style_editor.js index 441ebfb2d53bf..9636dab406a44 100644 --- a/x-pack/legacy/plugins/maps/public/layers/styles/vector/components/vector_style_editor.js +++ b/x-pack/legacy/plugins/maps/public/layers/styles/vector/components/vector_style_editor.js @@ -153,7 +153,7 @@ export class VectorStyleEditor extends Component { _hasMarkerOrIcon() { const iconSize = this.props.styleProperties[VECTOR_STYLES.ICON_SIZE]; - return !iconSize.isDynamic() && iconSize.getOptions().size > 0; + return iconSize.isDynamic() || iconSize.getOptions().size > 0; } _hasLabel() {