Skip to content

Commit

Permalink
Merge pull request #1066 from yaacov/fix-plane-typo
Browse files Browse the repository at this point in the history
🐞 typo-plane
  • Loading branch information
yaacov authored Apr 4, 2024
2 parents fcf4a8e + 730fe2a commit e79215e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -300,9 +300,9 @@
"Persistent TPM/EFI": "Persistent TPM/EFI",
"Plan details": "Plan details",
"Plan name": "Plan name",
"Plan not ready": "Plan not ready",
"Plan running": "Plan running",
"Plane not ready": "Plane not ready",
"Plane Succeeded": "Plane Succeeded",
"Plan Succeeded": "Plan Succeeded",
"Plans": "Plans",
"Plans for virtualization": "Plans for virtualization",
"Please choose a NetworkAttachmentDefinition for data transfer.": "Please choose a NetworkAttachmentDefinition for data transfer.",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -55,9 +55,9 @@ export const DetailsSectionInternal: React.FC<DetailsSectionProps> = ({ obj }) =
if (isExecuting) {
canNotRunLabel = t('Plan running');
} else if (isSucceeded) {
canNotRunLabel = t('Plane Succeeded');
canNotRunLabel = t('Plan Succeeded');
} else {
canNotRunLabel = t('Plane not ready');
canNotRunLabel = t('Plan not ready');
}

return (
Expand Down

0 comments on commit e79215e

Please sign in to comment.