Skip to content

Commit

Permalink
Change number format default
Browse files Browse the repository at this point in the history
  • Loading branch information
khtruong committed Mar 30, 2019
1 parent 21834d3 commit 49cf9bf
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions superset/assets/src/explore/controls.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -988,7 +988,7 @@ export const controls = {
freeForm: true,
label: t('Number format'),
renderTrigger: true,
default: '.3s',
default: ',.3f',
choices: D3_FORMAT_OPTIONS,
description: D3_FORMAT_DOCS,
},
Expand Down Expand Up @@ -1231,7 +1231,7 @@ export const controls = {
freeForm: true,
label: t('X Axis Format'),
renderTrigger: true,
default: '.3s',
default: ',.3f',
choices: D3_FORMAT_OPTIONS,
description: D3_FORMAT_DOCS,
},
Expand All @@ -1251,7 +1251,7 @@ export const controls = {
freeForm: true,
label: t('Y Axis Format'),
renderTrigger: true,
default: '.3s',
default: ',.3f',
choices: D3_FORMAT_OPTIONS,
description: D3_FORMAT_DOCS,
mapStateToProps: (state) => {
Expand All @@ -1272,7 +1272,7 @@ export const controls = {
type: 'SelectControl',
freeForm: true,
label: t('Right Axis Format'),
default: '.3s',
default: ',.3f',
choices: D3_FORMAT_OPTIONS,
description: D3_FORMAT_DOCS,
},
Expand Down

0 comments on commit 49cf9bf

Please sign in to comment.