CreateImageWizard: Fix inconsistent casing 'Target environment'

Closes #261
This commit is contained in:
Simon Steinbeiss 2021-07-13 08:31:29 +02:00 committed by Sanne Raymaekers
parent 93b7e4950a
commit fd2f937688
3 changed files with 3 additions and 3 deletions

View file

@ -6,7 +6,7 @@ import { Title } from '@patternfly/react-core';
export default {
title: 'Amazon Web Services',
customTitle: <Title headingLevel="h1" size="xl">Target Environment - Amazon Web Service</Title>,
customTitle: <Title headingLevel="h1" size="xl">Target environment - Amazon Web Service</Title>,
name: 'aws-target-env',
substepOf: 'Target environment',
nextStep: ({ values }) => nextStepMapper(values, { skipAws: true }),

View file

@ -57,7 +57,7 @@ PopoverInfo.propTypes = {
export default {
title: 'Google Cloud Platform',
customTitle: <Title headingLevel="h1" size="xl">Target Environment - Google Cloud Platform</Title>,
customTitle: <Title headingLevel="h1" size="xl">Target environment - Google Cloud Platform</Title>,
name: 'google-cloud-target-env',
substepOf: 'Target environment',
nextStep: ({ values }) => nextStepMapper(values, { skipGoogle: true, skipAws: true }),

View file

@ -7,7 +7,7 @@ import nextStepMapper from './imageOutputStepMapper';
export default {
title: 'Microsoft Azure',
customTitle: <Title headingLevel="h1" size="xl">Target Environment - Microsoft Azure</Title>,
customTitle: <Title headingLevel="h1" size="xl">Target environment - Microsoft Azure</Title>,
name: 'ms-azure-target-env',
substepOf: 'Target environment',
nextStep: ({ values }) => nextStepMapper(values, { skipAws: true, skipGoogle: true, skipAzure: true }),