Skip to content

Commit

Permalink
Merge pull request #540 from yaacov/typos-in-provider-details-page
Browse files Browse the repository at this point in the history
fix typos in providers details page
  • Loading branch information
yaacov committed Jul 11, 2023
2 parents 766447d + c8a9bdb commit 532f0eb
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -278,7 +278,6 @@
"Username": "Username",
"Validation Failed": "Validation Failed",
"VDDK container image of the provider, when left empty some functionality will not be available": "VDDK container image of the provider, when left empty some functionality will not be available",
"vddk Init Image": "vddk Init Image",
"VDDK Init Image": "VDDK Init Image",
"VDDK Init Image must be a valid container image, for example quay.io/kubev2v/example:latest": "VDDK Init Image must be a valid container image, for example quay.io/kubev2v/example:latest",
"View details": "View details",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ export const OpenshiftDetailsSection: React.FC<DetailsSectionProps> = ({ data })
title={t('Default Transfer Network')}
content={
provider?.metadata?.annotations?.['forklift.konveyor.io/defaultTransferNetwork'] || (
<span className="text-muted">{t('Empty')}</span>
<span className="text-muted">{t('Pod network')}</span>
)
}
helpContent={
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ export const VSphereDetailsSection: React.FC<DetailsSectionProps> = ({ data }) =
/>

<DetailsItem
title={t('vddk Init Image')}
title={t('VDDK Init Image')}
content={
provider?.spec?.settings?.['vddkInitImage'] || (
<span className="text-muted">{t('Empty')}</span>
Expand Down

0 comments on commit 532f0eb

Please sign in to comment.