mirror of
https://github.com/ant-design/ant-design.git
synced 2025-01-18 22:36:31 +08:00
fix getPopupContainer not work (#20509)
This commit is contained in:
parent
f965d92aa8
commit
695b67b045
@ -895,6 +895,8 @@ describe('Table.filter', () => {
|
||||
});
|
||||
|
||||
it('should support getPopupContainer', () => {
|
||||
const getPopupContainer = jest.fn(node => node.parentNode);
|
||||
|
||||
const wrapper = mount(
|
||||
createTable({
|
||||
columns: [
|
||||
@ -903,10 +905,11 @@ describe('Table.filter', () => {
|
||||
filterDropdownVisible: true,
|
||||
},
|
||||
],
|
||||
getPopupContainer: node => node.parentNode,
|
||||
getPopupContainer,
|
||||
}),
|
||||
);
|
||||
expect(wrapper.render()).toMatchSnapshot();
|
||||
expect(getPopupContainer).toHaveBeenCalled();
|
||||
});
|
||||
|
||||
it('should support getPopupContainer from ConfigProvider', () => {
|
||||
|
@ -768,6 +768,12 @@ exports[`Table.filter should support getPopupContainer 1`] = `
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div
|
||||
style="position: absolute; top: 0px; left: 0px; width: 100%;"
|
||||
/>
|
||||
<div
|
||||
style="position: absolute; top: 0px; left: 0px; width: 100%;"
|
||||
/>
|
||||
</span>
|
||||
</div>
|
||||
</th>
|
||||
|
@ -237,6 +237,7 @@ function FilterDropdown<RecordType>(props: FilterDropdownProps<RecordType>) {
|
||||
trigger={['click']}
|
||||
visible={mergedVisible}
|
||||
onVisibleChange={onVisibleChange}
|
||||
getPopupContainer={getPopupContainer}
|
||||
placement="bottomRight"
|
||||
>
|
||||
<span
|
||||
|
Loading…
Reference in New Issue
Block a user