Wizard: Update step description and ID clipboard copy

This adds back the step description and updates the organization ID clipboard copy based on recent mocks.
This commit is contained in:
regexowl 2025-07-25 13:20:58 +02:00
parent cfa9f92249
commit bd3b87fa52

View file

@ -2,6 +2,7 @@ import React, { useEffect, useState } from 'react';
import { import {
ClipboardCopy, ClipboardCopy,
Content,
Form, Form,
FormGroup, FormGroup,
FormHelperText, FormHelperText,
@ -44,11 +45,15 @@ const RegistrationStep = () => {
<Title headingLevel='h1' size='xl'> <Title headingLevel='h1' size='xl'>
Register systems using this image Register systems using this image
</Title> </Title>
<Content>
Configure registration settings for systems that will use this image.
</Content>
<FormGroup label='Organization ID'> <FormGroup label='Organization ID'>
<ClipboardCopy <ClipboardCopy
hoverTip='Copy to clipboard' hoverTip='Copy to clipboard'
clickTip='Successfully copied to clipboard!' clickTip='Successfully copied to clipboard!'
variant='inline-compact' isReadOnly
className='pf-v6-u-w-25'
> >
{orgId || ''} {orgId || ''}
</ClipboardCopy> </ClipboardCopy>