mirror of
https://github.com/apache/superset.git
synced 2026-04-18 07:35:09 +00:00
Add "Auto" option to Mapbox visualization point radius (#7579)
* Add Auto option to point radius to make it work as expected since the example using this didn't work because of this (and also as the tooltip says the auto option should be available) * Remove trailing space
This commit is contained in:
committed by
Maxime Beauchemin
parent
b21f8ec804
commit
2a2f395e94
@@ -1849,7 +1849,7 @@ export const controls = {
|
||||
'Either a numerical column or `Auto`, which scales the point based ' +
|
||||
'on the largest cluster'),
|
||||
mapStateToProps: state => ({
|
||||
choices: columnChoices(state.datasource),
|
||||
choices: formatSelectOptions(['Auto']).concat(columnChoices(state.datasource)),
|
||||
}),
|
||||
},
|
||||
|
||||
|
||||
Reference in New Issue
Block a user