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 · 1 comment
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?

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

2 participants