fix: correct english in CreateWorkspacePage (#6797)

This commit is contained in:
Ammar Bandukwala
2023-03-27 08:49:18 -03:00
committed by GitHub
parent e3a965bcc9
commit e0cc4ee7f8
@@ -274,7 +274,7 @@ export const CreateWorkspacePageView: FC<
{props.templateSchema && props.templateSchema.length > 0 && (
<FormSection
title="Template params"
description="Those values are provided by your template's Terraform configuration."
description="These values are provided by your template's Terraform configuration."
>
<FormFields>
{props.templateSchema
@@ -303,7 +303,7 @@ export const CreateWorkspacePageView: FC<
props.templateParameters.filter((p) => p.mutable).length > 0 && (
<FormSection
title="Parameters"
description="Those values are provided by your template's Terraform configuration. Values can be changed after creating the workspace."
description="These parameters are provided by your template's Terraform configuration and can be changed after creating the workspace."
>
<FormFields>
{props.templateParameters.map(
@@ -342,7 +342,7 @@ export const CreateWorkspacePageView: FC<
classes={{ root: styles.warningSection }}
description={
<>
Those values are also parameters provided from your Terraform
These parameters are also provided by your Terraform
configuration but they{" "}
<strong className={styles.warningText}>
cannot be changed after creating the workspace.