refactor(devtools): Router viz is only from 20.3.5 onward (#64415)

This is following some updated in #64411

PR Close #64415
This commit is contained in:
Matthieu Riegler 2025-10-14 23:09:28 +02:00 committed by Andrew Kushnir
parent 338ac3b2ef
commit 17528628fa
2 changed files with 2 additions and 2 deletions

View file

@ -163,7 +163,7 @@
<div class="unsupported-version">
<p>
Router tree visualization is available for Angular applications using the latest Angular
20.2.x release and above. Please upgrade your application to Angular 20.2.x or newer to use
20.3.5 release and above. Please upgrade your application to Angular 20.3.5 or newer to use
this feature.
</p>
</div>

View file

@ -109,7 +109,7 @@ describe('RouterTreeComponent', () => {
const unsupportedMsg = fixture.nativeElement.querySelector('.unsupported-version');
expect(unsupportedMsg).toBeTruthy();
expect(unsupportedMsg.textContent).toContain(
'Router tree visualization is available for Angular applications using the latest Angular 20.2.x release and above.',
'Router tree visualization is available for Angular applications using the latest Angular 20.3.5 release and above.',
);
});
});