mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 17:59:23 -04:00
[Maps] do not disable other styling when symbol size is dynmaic (#57247)
This commit is contained in:
parent
13cf3c83e7
commit
d7c2552944
1 changed files with 1 additions and 1 deletions
|
@ -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() {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue