Skip to content

Commit

Permalink
Fixing mapbox example
Browse files Browse the repository at this point in the history
  • Loading branch information
mistercrunch committed Feb 15, 2017
1 parent 3e6fb95 commit c1fa690
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions superset/assets/javascripts/explorev2/stores/fields.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -1032,12 +1032,12 @@ export const fields = {
point_radius: {
type: 'SelectField',
label: 'Point Radius',
default: null,
default: 'Auto',
description: 'The radius of individual points (ones that are not in a cluster). ' +
'Either a numerical column or `Auto`, which scales the point based ' +
'on the largest cluster',
mapStateToProps: (state) => ({
choices: [].concat(state.datasource.all_cols, [['Auto', 'Auto']]),
choices: [].concat([['Auto', 'Auto']], state.datasource.all_cols),
}),
},

Expand Down

0 comments on commit c1fa690

Please sign in to comment.