Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[DevTools Bug]: cannot double click anymore on component name to filter the tree view (in Components tab) (since v6.1.1) #32659

Open
clementcitiz opened this issue Mar 18, 2025 · 3 comments
Labels
Component: Developer Tools Status: Unconfirmed A potential issue that we haven't yet confirmed as a bug Type: Bug

Comments

@clementcitiz
Copy link

clementcitiz commented Mar 18, 2025

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;
  1. Open dev tools, Component tab
  2. Double click on B: nothing happens

Image

With version 6.0.1, double clicking on B filters the tree by showing only B and its direct children

Image

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)


@clementcitiz clementcitiz added Component: Developer Tools Status: Unconfirmed A potential issue that we haven't yet confirmed as a bug Type: Bug labels Mar 18, 2025
@clementcitiz clementcitiz changed the title [DevTools Bug]: cannot double click anymore on component name to filter the tree view (in Components tab) [DevTools Bug]: cannot double click anymore on component name to filter the tree view (in Components tab) (since v6.1.1) Mar 19, 2025
@narekmalk
Copy link

Can I take this issue?

@sergiotales1
Copy link

Hello!
I tested out here as well and it seems that right now its not possible to filter the tree view, but you can highlight it using the eye on the right side of the console. When you click it will make the tree of the selected component to be slightly highlighted.

Does this help or you need something more specific?

@hmon
Copy link

hmon commented Apr 6, 2025

+1
Any news on this?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Component: Developer Tools Status: Unconfirmed A potential issue that we haven't yet confirmed as a bug Type: Bug
Projects
None yet
Development

No branches or pull requests

4 participants