File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
src/plugins/data/public/ui/filter_bar Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change 2020import { EuiContextMenu , EuiPopover } from '@elastic/eui' ;
2121import { InjectedIntl , injectI18n } from '@kbn/i18n/react' ;
2222import classNames from 'classnames' ;
23- import React , { Component , ClickEvent } from 'react' ;
23+ import React , { Component , MouseEvent } from 'react' ;
2424import { IUiSettingsClient } from 'src/core/public' ;
2525import { FilterEditor } from './filter_editor' ;
2626import { FilterView } from './filter_view' ;
@@ -46,7 +46,7 @@ class FilterItemUI extends Component<Props, State> {
4646 isPopoverOpen : false ,
4747 } ;
4848
49- private handleBadgeClick = ( e : ClickEvent < HTMLInputElement > ) => {
49+ private handleBadgeClick = ( e : MouseEvent < HTMLInputElement > ) => {
5050 if ( e . shiftKey ) {
5151 this . onToggleDisabled ( ) ;
5252 } else {
You can’t perform that action at this time.
0 commit comments