diff --git a/packages/tiptap/src/Utils/ComponentView.js b/packages/tiptap/src/Utils/ComponentView.js index e22cc30e..c72d52b1 100644 --- a/packages/tiptap/src/Utils/ComponentView.js +++ b/packages/tiptap/src/Utils/ComponentView.js @@ -141,10 +141,12 @@ export default class ComponentView { } } + const isCopy = event.type === 'copy' const isPaste = event.type === 'paste' + const isCut = event.type === 'cut' const isDrag = event.type.startsWith('drag') || event.type === 'drop' - if ((draggable && isDrag) || isPaste) { + if ((draggable && isDrag) || isCopy || isPaste || isCut) { return false }