mirror of
https://github.com/apache/superset.git
synced 2026-06-03 06:39:25 +00:00
refactor: Removes the deprecated ENABLE_EXPLORE_DRAG_AND_DROP feature flag (#26343)
This commit is contained in:
committed by
GitHub
parent
b2ad74f94f
commit
6063f4ff04
@@ -24,11 +24,7 @@ import {
|
||||
t,
|
||||
isAdhocColumn,
|
||||
} from '@superset-ui/core';
|
||||
import {
|
||||
ColumnMeta,
|
||||
isColumnMeta,
|
||||
withDndFallback,
|
||||
} from '@superset-ui/chart-controls';
|
||||
import { ColumnMeta, isColumnMeta } from '@superset-ui/chart-controls';
|
||||
import { isEmpty } from 'lodash';
|
||||
import DndSelectLabel from 'src/explore/components/controls/DndColumnSelectControl/DndSelectLabel';
|
||||
import OptionWrapper from 'src/explore/components/controls/DndColumnSelectControl/OptionWrapper';
|
||||
@@ -37,7 +33,6 @@ import { DatasourcePanelDndItem } from 'src/explore/components/DatasourcePanel/t
|
||||
import { DndItemType } from 'src/explore/components/DndItemType';
|
||||
import ColumnSelectPopoverTrigger from './ColumnSelectPopoverTrigger';
|
||||
import { DndControlProps } from './types';
|
||||
import SelectControl from '../SelectControl';
|
||||
|
||||
export type DndColumnSelectProps = DndControlProps<QueryFormColumn> & {
|
||||
options: ColumnMeta[];
|
||||
@@ -216,9 +211,4 @@ function DndColumnSelect(props: DndColumnSelectProps) {
|
||||
);
|
||||
}
|
||||
|
||||
const DndColumnSelectWithFallback = withDndFallback(
|
||||
DndColumnSelect,
|
||||
SelectControl,
|
||||
);
|
||||
|
||||
export { DndColumnSelectWithFallback as DndColumnSelect };
|
||||
export { DndColumnSelect };
|
||||
|
||||
Reference in New Issue
Block a user