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:
parent
39a40034ac
commit
f91aeec3c8
1 changed files with 1 additions and 1 deletions
|
@ -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 = [];
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue