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
A mutation observer is created when the Accordion renders, but it is never removed. When the component unmounts, setChildContentHeight can still be called, and would result in an error:
It's not clear from the MDN docs, but this could also result in a memory leak if the listener isn't automatically cleaned when the DOM node is removed.
The text was updated successfully, but these errors were encountered:
See https://github.com/elastic/eui/blob/master/src/components/accordion/accordion.js#L67-L70
A mutation observer is created when the Accordion renders, but it is never removed. When the component unmounts,
setChildContentHeight
can still be called, and would result in an error:It's not clear from the MDN docs, but this could also result in a memory leak if the listener isn't automatically cleaned when the DOM node is removed.
The text was updated successfully, but these errors were encountered: