mirror of
https://gitee.com/ant-design/ant-design.git
synced 2024-12-02 12:09:14 +08:00
🐛 Fix Table filters trigger sort
close #13891 close #13933 close #13790
This commit is contained in:
parent
0f83299d91
commit
df8b784158
@ -1,13 +1,12 @@
|
||||
import * as React from 'react';
|
||||
|
||||
export interface FilterDropdownMenuWrapperProps {
|
||||
onClick?: React.MouseEventHandler<any>;
|
||||
children?: any;
|
||||
className?: string;
|
||||
}
|
||||
|
||||
export default (props: FilterDropdownMenuWrapperProps) => (
|
||||
<div className={props.className} onClick={props.onClick}>
|
||||
<div className={props.className} onClick={e => e.stopPropagation()}>
|
||||
{props.children}
|
||||
</div>
|
||||
);
|
||||
|
Loading…
Reference in New Issue
Block a user