CreateImageWizard: Add RHEL10beta search parameter
This means we can easily link to the wizard and pre-select RHEL 10 Beta which will be nice for the release announcement blog post.
This commit is contained in:
parent
ccc364b66d
commit
c4a06e2ac9
2 changed files with 8 additions and 0 deletions
|
|
@ -167,6 +167,9 @@ const CreateImageWizard = ({ isEdit }: CreateImageWizardProps) => {
|
|||
if (searchParams.get('release') === 'rhel8') {
|
||||
dispatch(changeDistribution(RHEL_8));
|
||||
}
|
||||
if (searchParams.get('release') === 'rhel10beta') {
|
||||
dispatch(changeDistribution(RHEL_10_BETA));
|
||||
}
|
||||
if (searchParams.get('arch') === AARCH64) {
|
||||
dispatch(changeArchitecture(AARCH64));
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue