Skip to content

Commit

Permalink
[Maps] do not disable other styling when symbol size is dynmaic (#57247
Browse files Browse the repository at this point in the history
…) (#57304)
  • Loading branch information
nreese authored Feb 11, 2020
1 parent 929dfed commit 3b3e17f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -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() {
Expand Down

0 comments on commit 3b3e17f

Please sign in to comment.