Skip to content

Commit

Permalink
docs: update v0 render to v17 (angular#55368)
Browse files Browse the repository at this point in the history
PR Close angular#55368
  • Loading branch information
bencodezen authored and iteriani committed Apr 18, 2024
1 parent b5785ca commit 61bebd8
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion adev/src/app/core/services/version-manager.service.ts
Expand Up @@ -61,7 +61,9 @@ export class VersionManager {

private getVersion(versionMode: VersionMode): string {
if (versionMode === 'stable') {
return `v${VERSION.major}`;
return 'v17';
// Temporarily commenting out till this works correctly
// return `v${VERSION.major}`;
}
if (Number.isInteger(versionMode)) {
return `v${versionMode}`;
Expand Down

0 comments on commit 61bebd8

Please sign in to comment.