Skip to content

Commit 8fe7a78

Browse files
authored
fix: update eos install modes (#98)
1 parent ee98ee3 commit 8fe7a78

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

src/ts/device_summary_extractor/eos.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,11 +31,11 @@ const getInstallModes = (installArray: { mode: string }[]): EOSInstallMode[] =>
3131
if (modeLowerCase === 'official install doc') {
3232
return EOSInstallMode.officialInstallDoc;
3333
}
34-
if (modeLowerCase === 'easy installer') {
35-
return EOSInstallMode.easyInstaller;
34+
if (modeLowerCase === '/e/os installer') {
35+
return EOSInstallMode.eOSInstaller;
3636
}
3737
if (modeLowerCase === 'murena smartphones') {
38-
return EOSInstallMode.eSmartphones;
38+
return EOSInstallMode.murenaSmartphones;
3939
}
4040
if (modeLowerCase === 'roll-back') {
4141
return EOSInstallMode.rollBack;

src/ts/device_summary_extractor/model.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,9 +39,9 @@ export enum EOSMaturity {
3939

4040
export enum EOSInstallMode {
4141
communityInstallDoc,
42+
eOSInstaller,
43+
murenaSmartphones,
4244
officialInstallDoc,
43-
easyInstaller,
44-
eSmartphones,
4545
rollBack,
4646
}
4747

0 commit comments

Comments
 (0)