fix: table custom filterIcon emit sort event #3819

pull/3828/head
tangjinzhou 4 years ago
parent 75c43683eb
commit b72a414eae

@ -221,7 +221,11 @@ export default defineComponent({
class: classNames(`${prefixCls}-icon`, dropdownIconClass, filterIcon.props?.class),
});
}
return <span class={classNames(`${prefixCls}-icon`, dropdownIconClass)}>{filterIcon}</span>;
return (
<span class={classNames(`${prefixCls}-icon`, dropdownIconClass)} onClick={stopPropagation}>
{filterIcon}
</span>
);
},
renderMenuItem(item) {

@ -1 +1 @@
Subproject commit 77d4fda0cd6e2d56704a2d6d789631d269a56a46
Subproject commit 496ff9154658d1ff28917f0bea6adfcb0cd05d43
Loading…
Cancel
Save