Skip to content

fix: correct english in CreateWorkspacePage #6797

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Mar 27, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
fix: correct english in CreateWorkspacePage
  • Loading branch information
ammario committed Mar 25, 2023
commit c92bcf8ca89f27afd8014931ef6f90f089183d6d
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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(
Expand Down Expand Up @@ -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.
Expand Down