Skip to content

Commit 5fa10ac

Browse files
committed
Wizard: Fix kernel alert rendering
The alert needs to be rendered outside of the Content block to be formatted properly.
1 parent 3e17596 commit 5fa10ac

1 file changed

Lines changed: 7 additions & 7 deletions

File tree

  • src/Components/CreateImageWizard/steps/Kernel

src/Components/CreateImageWizard/steps/Kernel/index.tsx

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -38,14 +38,14 @@ const KernelStep = () => {
3838
Choose a kernel package and append specific boot parameters to
3939
customize how your image initializes its core operating environment.
4040
</Content>
41-
{fips.enabled && (
42-
<Alert
43-
title='Kernel will be configured to use FIPS, no additional configuration needed.'
44-
variant='info'
45-
isInline
46-
/>
47-
)}
4841
</Content>
42+
{fips.enabled && (
43+
<Alert
44+
title='Kernel will be configured to use FIPS, no additional configuration needed.'
45+
variant='info'
46+
isInline
47+
/>
48+
)}
4949
<KernelName />
5050
<KernelArguments />
5151
</>

0 commit comments

Comments
 (0)