Closed
Description
Reproduction link
Steps to reproduce
- Create
Tabs
- Add a few items with
destroyInactiveTabPane: true
- Add a
useEffect(() => alert('onMount'), [])
- switch back and forth between tabs several times
What is expected?
If the component was destroyed when the tab is closed, the useEffect
should fire every time the tab is opened.
What is actually happening?
It only fires the first time the tab is opened
Environment | Info |
---|---|
antd | 5.10.0 |
React | 18.2 |
System | any |
Browser | chromium |
I tested with both the items
prop and the children and got the same result. Also tried adding forceRender
, but it doesn't do anything either.
It does work if you set the destroyInactiveTabPane
at the component level, but in my cases this would be highly undesired to destroy all the tabs!