From f287a0a4d1a3c32ec4413d5a33f05bcb63c245cc Mon Sep 17 00:00:00 2001 From: Agent Zero Date: Mon, 20 Jul 2026 02:29:40 +0200 Subject: [PATCH] fix: Context-Menu Konflikt mit draggable Ordner behoben --- frontend/src/components/ai/SessionList.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/frontend/src/components/ai/SessionList.tsx b/frontend/src/components/ai/SessionList.tsx index 26d50b0..bbd4596 100644 --- a/frontend/src/components/ai/SessionList.tsx +++ b/frontend/src/components/ai/SessionList.tsx @@ -88,6 +88,7 @@ function TreeItem({
{ + if (e.button !== 0) { e.preventDefault(); return; } e.dataTransfer.setData('text/plain', `folder:${node.folder!.id}`); e.dataTransfer.effectAllowed = 'move'; onDragFolder(node.folder!.id);