1
0
Fork 0
mirror of synced 2024-10-01 17:47:46 +13:00

Remove front end validation on password when editing users

This commit is contained in:
Andrew Kingston 2021-02-25 09:11:56 +00:00
parent c8a28ac927
commit 8e0aaf0daa

View file

@ -40,9 +40,6 @@
if (!row.email) {
errors = [...errors, { message: "Email is required" }]
}
if (!row.password) {
errors = [...errors, { message: "Password is required" }]
}
if (!row.roleId) {
errors = [...errors, { message: "Role is required" }]
}