CreateImageWizard: Expose centos 9 stream
This commit is contained in:
parent
2300af1152
commit
531e2ac1b0
2 changed files with 4 additions and 2 deletions
|
|
@ -5,7 +5,8 @@ import { RHEL_8 } from '../../../constants.js';
|
|||
|
||||
export const releaseValues = {
|
||||
[RHEL_8]: 'Red Hat Enterprise Linux (RHEL) 8',
|
||||
'centos-8': 'CentOS Stream 8'
|
||||
'centos-8': 'CentOS Stream 8',
|
||||
'centos-9': 'CentOS Stream 9',
|
||||
};
|
||||
|
||||
export default {
|
||||
|
|
|
|||
|
|
@ -7,7 +7,8 @@ import { RHEL_8 } from '../../constants.js';
|
|||
const Release = (props) => {
|
||||
const releaseOptions = {
|
||||
[RHEL_8]: 'RHEL 8',
|
||||
'centos-8': 'CentOS Stream 8'
|
||||
'centos-8': 'CentOS Stream 8',
|
||||
'centos-9': 'CentOS Stream 9',
|
||||
};
|
||||
const release = releaseOptions[props.release] ? releaseOptions[props.release] : props.release;
|
||||
return <Label color='blue'>{release}</Label>;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue