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
Describe the bug
Whenever I hover over the image in editable: false option, I get error: Failed to execute 'removeChild' on 'Node': The node to be removed is not a child of this node. To Reproduce
// Shows the resize handles when hovering over the image with the cursor.
const imageMouseEnterHandler = () => {
if (editor.isEditable) {
imageWrapper.appendChild(leftResizeHandle); // This was where the error was squiggled : Uncaught DOMException: Failed to execute 'removeChild' on 'Node': The node to be removed is not a child of this node.
imageWrapper.appendChild(rightResizeHandle);
} else {
imageWrapper.removeChild(leftResizeHandle);
imageWrapper.removeChild(rightResizeHandle);
}
};
is showing the issue Misc
Node version: v18.16.1
Package manager: npm
Browser: Brave
I'm a sponsor and would appreciate if you could look into this sooner than later 💖
The text was updated successfully, but these errors were encountered:
Describe the bug
Whenever I hover over the image in editable: false option, I get error: Failed to execute 'removeChild' on 'Node': The node to be removed is not a child of this node.
To Reproduce
Suspect
the file at
having the code:
is showing the issue
Misc
The text was updated successfully, but these errors were encountered: