Skip to content

Commit 24e2c4f

Browse files
committed
fix: typo in event type
1 parent 5425eae commit 24e2c4f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/plugins/data/public/ui/filter_bar/filter_item.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
import { EuiContextMenu, EuiPopover } from '@elastic/eui';
2121
import { InjectedIntl, injectI18n } from '@kbn/i18n/react';
2222
import classNames from 'classnames';
23-
import React, { Component, ClickEvent } from 'react';
23+
import React, { Component, MouseEvent } from 'react';
2424
import { IUiSettingsClient } from 'src/core/public';
2525
import { FilterEditor } from './filter_editor';
2626
import { 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 {

0 commit comments

Comments
 (0)