unlayer / react-email-editor

Drag-n-Drop Email Editor Component for React.js
https://unlayer.com/
MIT License
4.6k stars 742 forks source link

x.addEventListener is not a function #357

Closed hasanugr closed 1 year ago

hasanugr commented 1 year ago

Hi there,

We are getting Uncaught TypeError: x.addEventListener is not a function in version 1.7.9. This problem started with version 1.7.9. I solved this problem in my own project by fixing the version to 1.7.8.

A permanent solution is needed for this problem.

Screenshot 2023-09-04 at 19 29 42
brunolemos commented 1 year ago

All methods are available inside the editor field.

Make sure to call them like this:

-emailEditorRef.current.addEventListener(...)
+emailEditorRef.current.editor.addEventListener(...)