[Maps] do not disable other styling when symbol size is dynmaic (#57247)

This commit is contained in:
Nathan Reese 2020-02-11 05:38:16 -07:00 committed by GitHub
parent 13cf3c83e7
commit d7c2552944
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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() {