diff --git a/superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx b/superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx index 43ad46ba7f7..40c71ba3cb6 100644 --- a/superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx +++ b/superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx @@ -43,7 +43,6 @@ export const titleControls: ControlPanelSectionConfig = { label: t('X Axis Title'), renderTrigger: true, default: '', - description: t('Changing this control takes effect instantly'), }, }, ], @@ -58,7 +57,6 @@ export const titleControls: ControlPanelSectionConfig = { renderTrigger: true, default: TITLE_MARGIN_OPTIONS[0], choices: formatSelectOptions(TITLE_MARGIN_OPTIONS), - description: t('Changing this control takes effect instantly'), }, }, ], @@ -71,7 +69,6 @@ export const titleControls: ControlPanelSectionConfig = { label: t('Y Axis Title'), renderTrigger: true, default: '', - description: t('Changing this control takes effect instantly'), }, }, ], @@ -86,7 +83,6 @@ export const titleControls: ControlPanelSectionConfig = { renderTrigger: true, default: TITLE_MARGIN_OPTIONS[1], choices: formatSelectOptions(TITLE_MARGIN_OPTIONS), - description: t('Changing this control takes effect instantly'), }, }, ], @@ -101,7 +97,6 @@ export const titleControls: ControlPanelSectionConfig = { renderTrigger: true, default: TITLE_POSITION_OPTIONS[0][0], choices: TITLE_POSITION_OPTIONS, - description: t('Changing this control takes effect instantly'), }, }, ], diff --git a/superset-frontend/plugins/plugin-chart-echarts/src/Histogram/controlPanel.tsx b/superset-frontend/plugins/plugin-chart-echarts/src/Histogram/controlPanel.tsx index d4e8d4b86db..29cde5bd89a 100644 --- a/superset-frontend/plugins/plugin-chart-echarts/src/Histogram/controlPanel.tsx +++ b/superset-frontend/plugins/plugin-chart-echarts/src/Histogram/controlPanel.tsx @@ -122,7 +122,6 @@ const config: ControlPanelConfig = { label: t('X Axis Title'), renderTrigger: true, default: '', - description: t('Changing this control takes effect instantly'), }, }, ], @@ -148,7 +147,6 @@ const config: ControlPanelConfig = { label: t('Y Axis Title'), renderTrigger: true, default: '', - description: t('Changing this control takes effect instantly'), }, }, ], diff --git a/superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx b/superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx index 5d480c3e096..39080b651c8 100644 --- a/superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx +++ b/superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx @@ -72,7 +72,6 @@ function createAxisTitleControl(axis: 'x' | 'y'): ControlSetRow[] { label: t('Axis Title'), renderTrigger: true, default: '', - description: t('Changing this control takes effect instantly'), visibility: ({ controls }: ControlPanelsContainerProps) => isXAxis ? isVertical(controls) : isHorizontal(controls), disableStash: true, @@ -91,7 +90,6 @@ function createAxisTitleControl(axis: 'x' | 'y'): ControlSetRow[] { renderTrigger: true, default: sections.TITLE_MARGIN_OPTIONS[0], choices: formatSelectOptions(sections.TITLE_MARGIN_OPTIONS), - description: t('Changing this control takes effect instantly'), visibility: ({ controls }: ControlPanelsContainerProps) => isXAxis ? isVertical(controls) : isHorizontal(controls), disableStash: true, @@ -107,7 +105,6 @@ function createAxisTitleControl(axis: 'x' | 'y'): ControlSetRow[] { label: t('Axis Title'), renderTrigger: true, default: '', - description: t('Changing this control takes effect instantly'), visibility: ({ controls }: ControlPanelsContainerProps) => isXAxis ? isHorizontal(controls) : isVertical(controls), disableStash: true, @@ -126,7 +123,6 @@ function createAxisTitleControl(axis: 'x' | 'y'): ControlSetRow[] { renderTrigger: true, default: sections.TITLE_MARGIN_OPTIONS[1], choices: formatSelectOptions(sections.TITLE_MARGIN_OPTIONS), - description: t('Changing this control takes effect instantly'), visibility: ({ controls }: ControlPanelsContainerProps) => isXAxis ? isHorizontal(controls) : isVertical(controls), disableStash: true, @@ -145,7 +141,6 @@ function createAxisTitleControl(axis: 'x' | 'y'): ControlSetRow[] { renderTrigger: true, default: sections.TITLE_POSITION_OPTIONS[0][0], choices: sections.TITLE_POSITION_OPTIONS, - description: t('Changing this control takes effect instantly'), visibility: ({ controls }: ControlPanelsContainerProps) => isXAxis ? isHorizontal(controls) : isVertical(controls), disableStash: true,