diff --git a/superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/mixins.tsx b/superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/mixins.tsx index 0b19b96c7f6cf..1db389ddecb2c 100644 --- a/superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/mixins.tsx +++ b/superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/mixins.tsx @@ -73,9 +73,11 @@ export const datePickerInAdhocFilterMixin: Pick< initialValue: (control: ControlState, state: ControlPanelState | null) => { // skip initialValue if // 1) GENERIC_CHART_AXES is disabled - // 2) there was a time filter in adhoc filters + // 2) the time_range control is present (this is the case for legacy charts) + // 3) there was a time filter in adhoc filters if ( !hasGenericChartAxes || + state?.controls?.time_range?.value || ensureIsArray(control.value).findIndex( (flt: any) => flt?.operator === 'TEMPORAL_RANGE', ) > -1 diff --git a/superset-frontend/src/explore/components/ControlPanelsContainer.tsx b/superset-frontend/src/explore/components/ControlPanelsContainer.tsx index 7d0ceea50c99c..142b81d690537 100644 --- a/superset-frontend/src/explore/components/ControlPanelsContainer.tsx +++ b/superset-frontend/src/explore/components/ControlPanelsContainer.tsx @@ -495,7 +495,7 @@ export const ControlPanelsContainer = (props: ControlPanelsContainerProps) => { ) => { const isTemporalRange = (filter: Record) => filter.operator === Operators.TEMPORAL_RANGE; - if (isTemporalRange(valueToBeDeleted)) { + if (!controls?.time_range?.value && isTemporalRange(valueToBeDeleted)) { const count = values.filter(isTemporalRange).length; if (count === 1) { return t(