Merge pull request #14370 from afscrome/patch-4

Fix casing of EntityNamePicker validation error message
This commit is contained in:
Patrik Oldsberg
2022-11-14 16:07:47 +01:00
committed by GitHub
2 changed files with 6 additions and 1 deletions
+5
View File
@@ -0,0 +1,5 @@
---
'@backstage/plugin-scaffolder': patch
---
Fixed tiny grammar error in EntityNamePicker. The first letter of the description is now capitalized.
@@ -23,7 +23,7 @@ export const entityNamePickerValidation = (
) => {
if (!KubernetesValidatorFunctions.isValidObjectName(value)) {
validation.addError(
'must start and end with an alphanumeric character, and contain only alphanumeric characters, hyphens, underscores, and periods. Maximum length is 63 characters.',
'Must start and end with an alphanumeric character, and contain only alphanumeric characters, hyphens, underscores, and periods. Maximum length is 63 characters.',
);
}
};