diff --git a/packages/tiptap/src/Utils/ComponentView.js b/packages/tiptap/src/Utils/ComponentView.js index 4f7a26f8..9f4d50a4 100644 --- a/packages/tiptap/src/Utils/ComponentView.js +++ b/packages/tiptap/src/Utils/ComponentView.js @@ -116,10 +116,9 @@ export default class ComponentView { // prevent a full re-render of the vue component on update // we'll handle prop updates in `update()` ignoreMutation(mutation) { - // allow leaf nodes to be selected - if (mutation.type === "selection") { - return false; + if (mutation.type === 'selection') { + return false } if (!this.contentDOM) {