fix: table custom filterIcon emit sort event #3819
parent
75c43683eb
commit
b72a414eae
|
@ -221,7 +221,11 @@ export default defineComponent({
|
||||||
class: classNames(`${prefixCls}-icon`, dropdownIconClass, filterIcon.props?.class),
|
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) {
|
renderMenuItem(item) {
|
||||||
|
|
2
v2-doc
2
v2-doc
|
@ -1 +1 @@
|
||||||
Subproject commit 77d4fda0cd6e2d56704a2d6d789631d269a56a46
|
Subproject commit 496ff9154658d1ff28917f0bea6adfcb0cd05d43
|
Loading…
Reference in New Issue