angular/devtools/projects
AleksanderBodurri 5115050928 fix(devtools): DOM traversal bug (#62719)
Previously, Angular devtools would mistakenly traverse the same DOM elements multiple times while doing traversal for the component tree explorer. This error case would occur when more than 1 Angular application root component was present on the same page and in distinct DOM branches.

Some example cases that did work previously:

```html
<app-root>
...
</app-root>
```

```html
<app-root>
...
<app-root-2></app-root-2>
...
</app-root>
```

An example of where it would enter the irregular behaviour

```html
<app-root>
...
</app-root>
<app-root-2>
...
</app-root-2>
```

Now, we properly ignore duplicate DOM paths when looking for application and non-application root component to begin the Angular DevTools component discovery logic.

PR Close #62719
2025-08-18 15:43:09 +00:00
..
demo-no-zone build: drop usage of pkg_web (#62990) 2025-08-05 10:08:47 +02:00
ng-devtools fix(devtools): DOM traversal bug (#62719) 2025-08-18 15:43:09 +00:00
ng-devtools-backend fix(devtools): DOM traversal bug (#62719) 2025-08-18 15:43:09 +00:00
protocol fix(devtools): MessageBus.on return type (#62898) 2025-07-31 09:16:15 +00:00
shared-utils build: remove ts_project_interop infrastructure (#62908) 2025-07-31 09:12:58 +00:00
shell-browser build: update to bazel 7.6.0 (#63096) 2025-08-14 13:01:30 +02:00