chore(plugin-chart-pivot-table): swap order of Columns and Rows controls (#17798)

This commit is contained in:
Kamil Gabryjelski
2021-12-17 14:32:49 +01:00
committed by GitHub
parent 9c9edbe8bc
commit b5dca4ebfe

View File

@@ -41,16 +41,6 @@ const config: ControlPanelConfig = {
label: t('Query'),
expanded: true,
controlSetRows: [
[
{
name: 'groupbyRows',
config: {
...sharedControls.groupby,
label: t('Rows'),
description: t('Columns to group by on the rows'),
},
},
],
[
{
name: 'groupbyColumns',
@@ -61,6 +51,16 @@ const config: ControlPanelConfig = {
},
},
],
[
{
name: 'groupbyRows',
config: {
...sharedControls.groupby,
label: t('Rows'),
description: t('Columns to group by on the rows'),
},
},
],
[
{
name: 'metrics',