From 6beaecfb0f181d845a1ae5660dcba0835451cbb7 Mon Sep 17 00:00:00 2001 From: Ville Brofeldt Date: Thu, 27 May 2021 07:52:08 +0300 Subject: [PATCH] remove new icons --- .../src/filters/components/Select/SelectFilterPlugin.tsx | 4 ---- 1 file changed, 4 deletions(-) diff --git a/superset-frontend/src/filters/components/Select/SelectFilterPlugin.tsx b/superset-frontend/src/filters/components/Select/SelectFilterPlugin.tsx index c591aa277f63a..9c0f1f1dd31c0 100644 --- a/superset-frontend/src/filters/components/Select/SelectFilterPlugin.tsx +++ b/superset-frontend/src/filters/components/Select/SelectFilterPlugin.tsx @@ -38,7 +38,6 @@ import React, { import { Select } from 'src/common/components'; import debounce from 'lodash/debounce'; import { SLOW_DEBOUNCE } from 'src/constants'; -import { CheckOutlined, CloseOutlined } from '@ant-design/icons'; import { PluginFilterSelectProps, SelectValue } from './types'; import { StyledSelect, Styles } from '../common'; import { getDataRecordFormatter, getSelectExtraFormData } from '../../utils'; @@ -261,9 +260,6 @@ export default function PluginFilterSelect(props: PluginFilterSelectProps) { ref={inputRef} loading={isRefreshing} maxTagCount={5} - menuItemSelectedIcon={ - inverseSelection ? : - } > {sortedData.map(row => { const [value] = groupby.map(col => row[col]);