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
24 lines
629 B
HTML
24 lines
629 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<title>AngularDevtools</title>
|
|
<base href="/" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
<link rel="icon" type="image/x-icon" href="assets/icon16.png" />
|
|
<link
|
|
rel="stylesheet"
|
|
href="/angular/third_party/fonts.google.com/material-symbols-outlined/outlined.css"
|
|
/>
|
|
|
|
<link rel="stylesheet" href="./styles.css" />
|
|
</head>
|
|
<body>
|
|
<div>
|
|
<app-root></app-root>
|
|
<other-app></other-app>
|
|
</div>
|
|
|
|
<script type="module" src="./bundle/main.js"></script>
|
|
</body>
|
|
</html>
|