You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The below part of the code keeps getting hit regularly and errors out due to el being null or undefined. How to solve this issue?
`/js/wordcloud2.js at line 189:21
if (typeof el === 'string') {
elements[i] = document.getElementById(el)
if (!elements[i]) {
throw new Error('The element id specified is not found.')
}
} else if (!el.tagName && !el.appendChild) {
throw new Error('You must pass valid HTML elements, or ID of the element.')
}
})`
The text was updated successfully, but these errors were encountered:
The below part of the code keeps getting hit regularly and errors out due to
el
being null or undefined. How to solve this issue?`/js/wordcloud2.js at line 189:21
The text was updated successfully, but these errors were encountered: