Wizard: Support RHEL10 in URL search parameters
This commit is contained in:
parent
23473fd1cd
commit
92984f3187
1 changed files with 4 additions and 0 deletions
|
|
@ -62,6 +62,7 @@ import {
|
||||||
import {
|
import {
|
||||||
RHEL_8,
|
RHEL_8,
|
||||||
RHEL_10_BETA,
|
RHEL_10_BETA,
|
||||||
|
RHEL_10,
|
||||||
AARCH64,
|
AARCH64,
|
||||||
CENTOS_9,
|
CENTOS_9,
|
||||||
AMPLITUDE_MODULE_NAME,
|
AMPLITUDE_MODULE_NAME,
|
||||||
|
|
@ -210,6 +211,9 @@ const CreateImageWizard = ({ isEdit }: CreateImageWizardProps) => {
|
||||||
if (searchParams.get('release') === 'rhel10beta') {
|
if (searchParams.get('release') === 'rhel10beta') {
|
||||||
dispatch(changeDistribution(RHEL_10_BETA));
|
dispatch(changeDistribution(RHEL_10_BETA));
|
||||||
}
|
}
|
||||||
|
if (searchParams.get('release') === 'rhel10') {
|
||||||
|
dispatch(changeDistribution(RHEL_10));
|
||||||
|
}
|
||||||
if (searchParams.get('arch') === AARCH64) {
|
if (searchParams.get('arch') === AARCH64) {
|
||||||
dispatch(changeArchitecture(AARCH64));
|
dispatch(changeArchitecture(AARCH64));
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue