From ab90611c369779da1e2e07875439b79c76b28e5d Mon Sep 17 00:00:00 2001 From: Anthony LC Date: Thu, 11 Sep 2025 16:11:48 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=A5(frontend)=20remove=20multi=20colum?= =?UTF-8?q?n=20drop=20cursor?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The drop cursor for multi column was causing issues with the editor's usability. This commit removes the custom drop cursor implementation to enhance user experience. --- CHANGELOG.md | 4 ++++ .../features/docs/doc-editor/components/BlockNoteEditor.tsx | 2 -- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0b92afbe..8110b394 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -26,6 +26,10 @@ and this project adheres to - #1341 - ♻️(tilt) use helm dev-backend chart +### Removed + +- 🔥(frontend) remove multi column drop cursor #1370 + ### Fixed - 🐛(frontend) fix callout emoji list #1366 diff --git a/src/frontend/apps/impress/src/features/docs/doc-editor/components/BlockNoteEditor.tsx b/src/frontend/apps/impress/src/features/docs/doc-editor/components/BlockNoteEditor.tsx index 04238f48..b12e5981 100644 --- a/src/frontend/apps/impress/src/features/docs/doc-editor/components/BlockNoteEditor.tsx +++ b/src/frontend/apps/impress/src/features/docs/doc-editor/components/BlockNoteEditor.tsx @@ -44,7 +44,6 @@ import { } from './custom-inline-content'; import XLMultiColumn from './xl-multi-column'; -const multiColumnDropCursor = XLMultiColumn?.multiColumnDropCursor; const multiColumnLocales = XLMultiColumn?.locales; const withMultiColumn = XLMultiColumn?.withMultiColumn; @@ -157,7 +156,6 @@ export const BlockNoteEditor = ({ doc, provider }: BlockNoteEditorProps) => { }, uploadFile, schema: blockNoteSchema, - dropCursor: multiColumnDropCursor, }, [collabName, lang, provider, uploadFile], );