Skip to content

Commit

Permalink
fix: fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
uBaranT committed Apr 5, 2024
1 parent 495a320 commit 211bc6f
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions superset-frontend/src/pages/DvtChart/dvtChartDataOptions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -562,27 +562,27 @@ const chartFormsOption = {
],
label_type: [
{
label: 'Value',
label: t('Value'),
value: 'value',
},
{
label: 'Category Name',
label: t('Category Name'),
value: 'key',
},
{
label: 'Percentage',
label: t('Percentage'),
value: 'percent',
},
{
label: 'Category and Value',
label: t('Category and Value'),
value: 'key_value',
},
{
label: 'Category and Percentage',
label: t('Category and Percentage'),
value: 'key_percent',
},
{
label: 'Category, Value and Percentage',
label: t('Category, Value and Percentage'),
value: 'key_value_percent',
},
],
Expand Down Expand Up @@ -636,23 +636,23 @@ const chartFormsOption = {
value: 0,
},
{
label: t('10'),
label: '10',
value: 10,
},
{
label: t('20'),
label: '20',
value: 20,
},
{
label: t('50'),
label: '50',
value: 50,
},
{
label: t('100'),
label: '100',
value: 100,
},
{
label: t('200'),
label: '200',
value: 200,
},
],
Expand Down

0 comments on commit 211bc6f

Please sign in to comment.