mirror of
https://github.com/dani-garcia/vaultwarden.git
synced 2025-09-09 19:22:42 +00:00
Fix invite empty email
This commit is contained in:
parent
b8cabadd43
commit
ddd49596ba
2 changed files with 9 additions and 1 deletions
|
@ -65,7 +65,7 @@
|
|||
}
|
||||
function deleteUser(id, mail) {
|
||||
var input_mail = prompt("To delete user '" + mail + "', please type the name below")
|
||||
if (input_mail) {
|
||||
if (input_mail != null) {
|
||||
if (input_mail == mail) {
|
||||
_post("/admin/users/" + id + "/delete",
|
||||
"User deleted correctly",
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue