fix(profile): 修正密码验证字段名不匹配问题

This commit is contained in:
zhangtao
2025-07-27 00:29:38 +08:00
parent 23d1e7adce
commit 8c6733c791
+1 -1
View File
@@ -326,7 +326,7 @@ const resetPasswordRules = {
},
{
validator: (_: any, value: string) => {
return value === passwordFormState.newPassword;
return value === passwordFormState.new_password;
},
trigger: "blur",
message: t("login.message.password.inconformity"),