Skip to content

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

Closed
@clementcitiz

Description

@clementcitiz

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)


Metadata

Metadata

Assignees

Type

No type

Projects

No projects

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions