Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion src/Components/CreateImageWizard/steps/Hostname/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,12 @@ import { CustomizationLabels } from '../../../sharedComponents/CustomizationLabe

const HostnameStep = () => {
return (
<Form>
<Form
onSubmit={(event) => {
// this prevents from reloading the wizard on pressing enter
event.preventDefault();
}}
>
<CustomizationLabels customization='hostname' />
<Title headingLevel='h1' size='xl'>
Hostname
Expand Down
Loading