V2Wizard: Consistent capitalisation
This converts all headings and subheadings to sentence case for the sake of consistency.
This commit is contained in:
parent
854c2b2deb
commit
6e9091fab1
7 changed files with 12 additions and 12 deletions
|
|
@ -13,7 +13,7 @@ import { RHC_URL } from '../../../../constants';
|
|||
const RegisterLaterInformation = () => {
|
||||
return (
|
||||
<TextContent>
|
||||
<Text component={TextVariants.h3}>Register Later</Text>
|
||||
<Text component={TextVariants.h3}>Register later</Text>
|
||||
<Text>
|
||||
On initial boot, systems will need to be registered manually before
|
||||
having access to updates or Red Hat services. Registering and connecting
|
||||
|
|
|
|||
|
|
@ -331,7 +331,7 @@ export const TargetEnvAzureList = () => {
|
|||
{shareMethod === 'manual' && (
|
||||
<>
|
||||
<TextListItem component={TextListItemVariants.dt}>
|
||||
Azure Tenant ID
|
||||
Azure tenant ID
|
||||
</TextListItem>
|
||||
<TextListItem component={TextListItemVariants.dd}>
|
||||
{tenantId}
|
||||
|
|
@ -469,7 +469,7 @@ export const ContentList = ({
|
|||
component={TextListItemVariants.dt}
|
||||
className="pf-u-min-width"
|
||||
>
|
||||
Repository Snapshot
|
||||
Repository snapshot
|
||||
</TextListItem>
|
||||
<TextListItem
|
||||
component={TextListItemVariants.dd}
|
||||
|
|
|
|||
|
|
@ -32,7 +32,7 @@ export const AwsAccountId = () => {
|
|||
|
||||
return (
|
||||
<>
|
||||
<FormGroup label="Associated Account ID" isRequired>
|
||||
<FormGroup label="Associated account ID" isRequired>
|
||||
<TextInput
|
||||
readOnlyVariant="default"
|
||||
isRequired
|
||||
|
|
|
|||
|
|
@ -66,7 +66,7 @@ export const AwsSourcesSelect = () => {
|
|||
|
||||
return (
|
||||
<>
|
||||
<FormGroup isRequired label={'Source Name'} data-testid="sources">
|
||||
<FormGroup isRequired label={'Source name'} data-testid="sources">
|
||||
<Select
|
||||
ouiaId="source_select"
|
||||
variant={SelectVariant.typeahead}
|
||||
|
|
|
|||
|
|
@ -99,7 +99,7 @@ const Aws = () => {
|
|||
<SourcesButton />
|
||||
<Gallery hasGutter>
|
||||
<GalleryItem>
|
||||
<FormGroup label="Default Region" isRequired>
|
||||
<FormGroup label="Default region" isRequired>
|
||||
<TextInput
|
||||
readOnlyVariant="default"
|
||||
isRequired
|
||||
|
|
@ -131,7 +131,7 @@ const Aws = () => {
|
|||
helperText="Should be 12 characters long."
|
||||
/>
|
||||
</FormGroup>
|
||||
<FormGroup label="Default Region" isRequired>
|
||||
<FormGroup label="Default region" isRequired>
|
||||
<TextInput
|
||||
value={'us-east-1'}
|
||||
type="text"
|
||||
|
|
|
|||
|
|
@ -103,7 +103,7 @@ export const AzureSourcesSelect = () => {
|
|||
|
||||
return (
|
||||
<>
|
||||
<FormGroup isRequired label={'Source Name'} data-testid="azure-sources">
|
||||
<FormGroup isRequired label={'Source name'} data-testid="azure-sources">
|
||||
<Select
|
||||
ouiaId="source_select"
|
||||
variant={SelectVariant.typeahead}
|
||||
|
|
|
|||
|
|
@ -127,9 +127,9 @@ const Azure = () => {
|
|||
<SourcesButton />
|
||||
<Gallery hasGutter>
|
||||
<GalleryItem>
|
||||
<FormGroup label="Azure Tenant GUID" isRequired>
|
||||
<FormGroup label="Azure tenant GUID" isRequired>
|
||||
<TextInput
|
||||
aria-label="Azure Tenant GUID"
|
||||
aria-label="Azure tenant GUID"
|
||||
readOnlyVariant="default"
|
||||
isRequired
|
||||
id="tenant id"
|
||||
|
|
@ -156,9 +156,9 @@ const Azure = () => {
|
|||
)}
|
||||
{shareMethod === 'manual' && (
|
||||
<>
|
||||
<FormGroup label="Azure Tenant GUID" isRequired>
|
||||
<FormGroup label="Azure tenant GUID" isRequired>
|
||||
<ValidatedTextInput
|
||||
ariaLabel="Azure Tenant GUID"
|
||||
ariaLabel="Azure tenant GUID"
|
||||
value={tenantId || ''}
|
||||
validator={isAzureTenantGUIDValid}
|
||||
onChange={(_event, value) => dispatch(changeAzureTenantId(value))}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue