0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-04-01 02:41:39 -05:00

Fixed members form missing data-members-name

refs #12249
refs ce14d8113a

This was incorrectly assuming the presence of the data-members-name
element in the document. By guarding against it and defaulting to
undefined, we fallback to the existing behaviour when the element is not
present.
This commit is contained in:
Rish 2020-10-01 22:46:45 +05:30
parent 39a40034ac
commit f91aeec3c8

View file

@ -14,7 +14,7 @@ function handleDataAttributes({siteUrl}) {
let emailInput = event.target.querySelector('input[data-members-email]');
let nameInput = event.target.querySelector('input[data-members-name]');
let email = emailInput.value;
let name = nameInput.value;
let name = (nameInput && nameInput.value) || undefined;
let emailType = undefined;
let labels = [];