Skip to content

Commit 2013261

Browse files
josephperrottthePunderWoman
authored andcommitted
docs: add version 21 to update guide page
1 parent 0a33a18 commit 2013261

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

adev/src/app/features/update/update.component.ts

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -71,6 +71,7 @@ export default class UpdateComponent {
7171
protected afterRecommendations: Step[] = [];
7272

7373
protected readonly versions = [
74+
{name: '21.0', number: 2100},
7475
{name: '20.0', number: 2000},
7576
{name: '19.0', number: 1900},
7677
{name: '18.0', number: 1800},
@@ -108,8 +109,8 @@ export default class UpdateComponent {
108109
{name: '2.1', number: 201},
109110
{name: '2.0', number: 200},
110111
];
111-
protected from = this.versions.find((version) => version.name === '19.0')!;
112-
protected to = this.versions.find((version) => version.name === '20.0')!;
112+
protected from = this.versions.find((version) => version.name === '20.0')!;
113+
protected to = this.versions.find((version) => version.name === '21.0')!;
113114
protected futureVersion = 2100;
114115

115116
protected readonly steps: Step[] = RECOMMENDATIONS;

0 commit comments

Comments
 (0)