From ccdc861e439cecec0077597d2ee879b0aaac47c6 Mon Sep 17 00:00:00 2001 From: kakkokari-gtyih <67428053+kakkokari-gtyih@users.noreply.github.com> Date: Fri, 8 Nov 2024 19:00:07 +0900 Subject: [PATCH] fix --- packages/frontend/src/pages/page-editor/page-editor.blocks.vue | 1 - 1 file changed, 1 deletion(-) diff --git a/packages/frontend/src/pages/page-editor/page-editor.blocks.vue b/packages/frontend/src/pages/page-editor/page-editor.blocks.vue index aa2e218e07..f5d847e1ce 100644 --- a/packages/frontend/src/pages/page-editor/page-editor.blocks.vue +++ b/packages/frontend/src/pages/page-editor/page-editor.blocks.vue @@ -88,7 +88,6 @@ function dragStart(ev: DragEvent) { const blockId = ev.target.dataset.blockId; if (blockId != null) { console.log('dragStart', blockId); - ev.dataTransfer!.setData('application/x-misskey-pageblock-id', blockId); isDragging.value = true; draggingBlockId.value = blockId; document.addEventListener('dragover', watchForMouseMove);