Skip to content
Open
Show file tree
Hide file tree
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
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ export const ClusterForm = ({
<Field
name="name"
label="Platform name"
helpText="Must contain lower-case alphanumeric characters and dash (-) only."
helpText="Must start with a lowercase letter, and only contain lower-case alphanumeric characters & dashes (-)."
>
<BSForm.Control
type="text"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ const NodeGroupModalForm = ({
<Field
name="name"
label="Name"
helpText="Must contain lower-case alphanumeric characters and dash (-) only."
helpText="Must start with a letter, and only contain lower-case alphanumeric characters & dashes (-)."
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
helpText="Must start with a letter, and only contain lower-case alphanumeric characters & dashes (-)."
helpText="Must start with a lowercase letter, and only contain lower-case alphanumeric characters & dashes (-)."

>
<BSForm.Control
as={InputWithCustomValidity}
Expand Down Expand Up @@ -347,7 +347,7 @@ export const KubernetesClusterForm = ({
<Field
name="name"
label="Cluster name"
helpText="Must contain lower-case alphanumeric characters and dash (-) only."
helpText="Must start with a letter, and only contain lower-case alphanumeric characters & dashes (-)."
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
helpText="Must start with a letter, and only contain lower-case alphanumeric characters & dashes (-)."
helpText="Must start with a lowercase letter, and only contain lower-case alphanumeric characters & dashes (-)."

>
<BSForm.Control
type="text"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,7 @@ export const KubernetesAppForm = ({
<Field
name="name"
label="Platform name"
helpText="Must contain lower-case alphanumeric characters and dash (-) only."
helpText="Must start with a letter, and only contain lower-case alphanumeric characters & dashes (-)."
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
helpText="Must start with a letter, and only contain lower-case alphanumeric characters & dashes (-)."
helpText="Must start with a lowercase letter, and only contain lower-case alphanumeric characters & dashes (-)."

>
<BSForm.Control
type="text"
Expand Down