mirror of
https://github.com/coder/coder.git
synced 2026-09-22 05:05:20 +08:00
fix: correct english in CreateWorkspacePage (#6797)
This commit is contained in:
@@ -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.
|
||||
|
||||
Reference in New Issue
Block a user