diff --git a/.changeset/fair-beans-wave.md b/.changeset/fair-beans-wave.md new file mode 100644 index 00000000000..f38f2fa90a8 --- /dev/null +++ b/.changeset/fair-beans-wave.md @@ -0,0 +1,8 @@ +--- +"@wso2is/identity-apps-core": patch +"@wso2is/myaccount": patch +"@wso2is/console": patch +"@wso2is/core": patch +--- + +Fix password patterns updated via console not being reflected in My Account and reset password window diff --git a/identity-apps-core/apps/recovery-portal/src/main/webapp/password-reset.jsp b/identity-apps-core/apps/recovery-portal/src/main/webapp/password-reset.jsp index e8aebc20b1d..b3111b684e1 100644 --- a/identity-apps-core/apps/recovery-portal/src/main/webapp/password-reset.jsp +++ b/identity-apps-core/apps/recovery-portal/src/main/webapp/password-reset.jsp @@ -68,7 +68,7 @@ JSONObject passwordConfig = null; /* This variable exists for backward compatibility.If isPasswordInputValidationEnabled is true, the password - validation will be done via the new input validation listener.Otherwise,it will be done via the old password + validation will be done via the new input validation listener. Otherwise, it will be done via the old password policy validation handler. */ Boolean isPasswordInputValidationEnabled = Boolean.parseBoolean(getServletContext().getInitParameter("isPasswordInputValidationEnabled")); @@ -536,7 +536,7 @@ } /** - * Function to enable cross-marks on unmet criteria when submitting.When isPasswordInputValidationEnabled + * Function to enable cross-marks on unmet criteria when submitting. When isPasswordInputValidationEnabled * is false, only the basic password validation will be performed. */ function passwordSubmitValidation() { diff --git a/modules/core/src/models/config.ts b/modules/core/src/models/config.ts index 068a592f98b..471b7cfce87 100644 --- a/modules/core/src/models/config.ts +++ b/modules/core/src/models/config.ts @@ -187,7 +187,7 @@ export interface CommonUIConfigInterface> { */ isLeftNavigationCategorized?: boolean; /** - * Flags to check whether the password validation is performed using input validation listener. + * Flag to check whether the password validation is performed using input validation listener. */ isPasswordInputValidationEnabled: boolean; /**