mirror of
https://github.com/angular/angular
synced 2026-05-24 09:28:37 +00:00
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
17 lines
656 B
TypeScript
17 lines
656 B
TypeScript
/**
|
|
* @license
|
|
* Copyright Google LLC All Rights Reserved.
|
|
*
|
|
* Use of this source code is governed by an MIT-style license that can be
|
|
* found in the LICENSE file at https://angular.dev/license
|
|
*/
|
|
|
|
import {bootstrapApplication} from '@angular/platform-browser';
|
|
import {AppComponent, OtherAppComponent} from './app/app.component';
|
|
import {appConfig} from './app/app.config';
|
|
import {provideZonelessChangeDetection} from '@angular/core';
|
|
|
|
bootstrapApplication(AppComponent, appConfig).catch((err) => console.error(err));
|
|
bootstrapApplication(OtherAppComponent, {
|
|
providers: [provideZonelessChangeDetection()],
|
|
}).catch((err) => console.error(err));
|