ImagesTable: add missing releases

This commit is contained in:
Sanne Raymaekers 2025-05-14 12:26:40 +02:00 committed by Lucas Garfield
parent 8b7d6ef2a7
commit 23473fd1cd

View file

@ -28,6 +28,7 @@ const Release = ({ release }: ReleaseProps) => {
'rhel-93': 'RHEL 9.3',
'rhel-94': 'RHEL 9.4',
'rhel-95': 'RHEL 9.5',
'rhel-9.6': 'RHEL 9.6',
'rhel-10': 'RHEL 10',
'rhel-10.0': 'RHEL 10.0',
'rhel-10-nightly': 'RHEL 10',
@ -44,6 +45,7 @@ const Release = ({ release }: ReleaseProps) => {
'fedora-39': 'Fedora 39',
'fedora-40': 'Fedora 40',
'fedora-41': 'Fedora 41',
'fedora-42': 'Fedora 42',
};
return <p>{releaseDisplayValue[release]}</p>;