mirror of https://github.com/zulip/zulip.git
invite: Use `email` rather than `values[0]` in invite.js.
This commit is contained in:
parent
a003d592b3
commit
572b3930e7
|
@ -80,7 +80,7 @@ function submit_invitation_form() {
|
||||||
if (deactivated) {
|
if (deactivated) {
|
||||||
is_invitee_deactivated = true;
|
is_invitee_deactivated = true;
|
||||||
}
|
}
|
||||||
invitee_emails_errored.push(value[0]);
|
invitee_emails_errored.push(email);
|
||||||
});
|
});
|
||||||
|
|
||||||
const error_response = render_invitation_failed_error({
|
const error_response = render_invitation_failed_error({
|
||||||
|
|
Loading…
Reference in New Issue