From 5545ce40273dab181a76f03c5582545762597e6f Mon Sep 17 00:00:00 2001 From: Simon Steinbeiss Date: Wed, 18 Jun 2025 21:28:24 +0200 Subject: [PATCH] Wizard: Adjust distribution sorting for RHEL 10 Since RHEL 10 is the new default, the sort order should reflect that. --- src/constants.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/constants.ts b/src/constants.ts index 0f83c298..d9b15e2f 100644 --- a/src/constants.ts +++ b/src/constants.ts @@ -90,9 +90,9 @@ export const UNIT_GIB = 1024 ** 3; // Use a Map() to ensure order is preserved (order is not gauranteed by an Object()) export const RELEASES = new Map([ + [RHEL_10, 'Red Hat Enterprise Linux (RHEL) 10'], [RHEL_9, 'Red Hat Enterprise Linux (RHEL) 9'], [RHEL_8, 'Red Hat Enterprise Linux (RHEL) 8'], - [RHEL_10, 'Red Hat Enterprise Linux (RHEL) 10'], [RHEL_9_BETA, 'Red Hat Enterprise Linux (RHEL) 9 Beta'], [RHEL_10_BETA, 'Red Hat Enterprise Linux (RHEL) 10 Beta'], [CENTOS_9, 'CentOS Stream 9'],