Skip to content
This repository was archived by the owner on Sep 9, 2024. It is now read-only.

Commit a901eef

Browse files
committed
Initial instructions for v15 and refactoring
Updated the level to an enum for better readability and initiated the update instructions to v15.
1 parent a152563 commit a901eef

File tree

2 files changed

+228
-205
lines changed

2 files changed

+228
-205
lines changed

src/app/app.component.ts

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@ export class AppComponent {
3535
afterRecommendations: Step[] = [];
3636

3737
versions = [
38+
{ name: '16.0', number: 1600 },
3839
{ name: '15.0', number: 1500 },
3940
{ name: '14.0', number: 1400 },
4041
{ name: '13.0', number: 1300 },
@@ -67,9 +68,9 @@ export class AppComponent {
6768
{ name: '2.1', number: 201 },
6869
{ name: '2.0', number: 200 },
6970
];
70-
from = this.versions.find((version) => version.name === '13.0');
71-
to = this.versions.find((version) => version.name === '14.0');
72-
futureVersion = 1500
71+
from = this.versions.find((version) => version.name === '14.0');
72+
to = this.versions.find((version) => version.name === '15.0');
73+
futureVersion = 1600
7374
/**
7475
* Only save the locale in the URL if it was already there, or the user changed it
7576
*/

0 commit comments

Comments
 (0)