From 0bc2d92abae1b183a1194e8d4e8a0745dffc42fd Mon Sep 17 00:00:00 2001 From: Mihir Kulkarni Date: Thu, 3 Nov 2022 00:31:14 -0700 Subject: [PATCH] #7994 Updating password error message to mention numbers. (#8103) --- .../src/main/resources/ui/src/constants/error-message.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/openmetadata-ui/src/main/resources/ui/src/constants/error-message.ts b/openmetadata-ui/src/main/resources/ui/src/constants/error-message.ts index fe96d87b221..1af24bcc93b 100644 --- a/openmetadata-ui/src/main/resources/ui/src/constants/error-message.ts +++ b/openmetadata-ui/src/main/resources/ui/src/constants/error-message.ts @@ -12,4 +12,5 @@ */ export const passwordErrorMessage = - 'Password must be a minimum of 8 and a maximum of 16 characters long and contain at least one uppercase and one lowercase letter (A, z), and one special character (such as !, %, @, or #)'; + 'Password must be a minimum of 8 and a maximum of 16 characters long and contain at least one uppercase character ' + + '(A-Z), one lowercase character (a-z), one number, and one special character (such as !, %, @, or #)';