We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0f48815 commit 58e8af6Copy full SHA for 58e8af6
components/lib/autocomplete/AutoComplete.js
@@ -645,10 +645,10 @@ export const AutoComplete = React.memo(
645
{
646
ref: multiContainerRef,
647
className,
648
- onContextMenu: (e) => props.onContextMenu(e),
649
- onMouseDown: (e) => props.onMouseDown(e),
650
- onClick: (e) => onMultiContainerClick(e),
651
- onDoubleClick: (e) => props.onDblClick(e)
+ onClick: onMultiContainerClick,
+ onContextMenu: props.onContextMenu,
+ onMouseDown: props.onMouseDown,
+ onDoubleClick: props.onDblClick
652
},
653
ptm('container')
654
);
0 commit comments