You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In the DefaultEditView there is a validateBeforeSubmit state which is passed to the Auth component. This seems to be used by the Auth component to inform its parent DefaultEditView when the user has clicked on change password in the users collection. So it basically tells the parent whether or not the inputs for the new password are currently visible and are required to be set when the form is submitted.
The problem is that when I click on change password, and I enter a new password and then save, the ui updates and the password fields are not visible anymore. However the validateBeforeSubmit state still seems to be set to true and therefore when changing for example the email address and then clicking the save button again it complains that I need to fill the required password fields.
I assume the fix for this is kinda simple and that is to just reset the validateBeforeSubmit state to false in the save function.
1.) Take any Payload v3 project with a user collection.
2.) Pick a user to edit
3.) Change password and click save, DO NOT RELOAD THE PAGE
4.) Change the mail address and click save again -> Password fields are still required
5.) Reload the page and change only the mail address and click save -> now it's working
Which area(s) are affected? (Select all that apply)
area: ui
Environment Info
Payload: 3.28.0
The text was updated successfully, but these errors were encountered:
Describe the Bug
In the
DefaultEditView
there is avalidateBeforeSubmit
state which is passed to theAuth
component. This seems to be used by theAuth
component to inform its parentDefaultEditView
when the user has clicked on change password in the users collection. So it basically tells the parent whether or not the inputs for the new password are currently visible and are required to be set when the form is submitted.The problem is that when I click on change password, and I enter a new password and then save, the ui updates and the password fields are not visible anymore. However the
validateBeforeSubmit
state still seems to be set to true and therefore when changing for example the email address and then clicking the save button again it complains that I need to fill the required password fields.I assume the fix for this is kinda simple and that is to just reset the
validateBeforeSubmit
state tofalse
in thesave
function.Link to the code that reproduces this issue
https://github.com/payloadcms/payload/tree/main/templates/blank
Reproduction Steps
1.) Take any Payload v3 project with a user collection.
2.) Pick a user to edit
3.) Change password and click save, DO NOT RELOAD THE PAGE
4.) Change the mail address and click save again -> Password fields are still required
5.) Reload the page and change only the mail address and click save -> now it's working
Which area(s) are affected? (Select all that apply)
area: ui
Environment Info
The text was updated successfully, but these errors were encountered: