Closed
Description
Website or app
None
Repro steps
const A = () => {
return <div>A</div>;
};
const B = () => {
return (
<>
<div>B</div>
<C/>
<D/>
</>
);
};
const C = () => {
return <div>C</div>;
};
const D = () => {
return <div>D</div>;
};
function App() {
return (
<>
<A />
<B />
</>
);
}
export default App;
- Open dev tools, Component tab
- Double click on B: nothing happens
With version 6.0.1, double clicking on B filters the tree by showing only B and its direct children
Tested on Chrome and Firefox with version 6.1.1
How often does this bug happen?
Every time
DevTools package (automated)
No response
DevTools version (automated)
No response
Error message (automated)
No response
Error call stack (automated)
Error component stack (automated)
GitHub query string (automated)