From 95d75f7a7a3bede160df03c6a2ef3decfe66fd46 Mon Sep 17 00:00:00 2001 From: Test Date: Tue, 7 Apr 2026 20:34:10 +0200 Subject: [PATCH] fix: avoid duplicate list property drag tab index --- src/components/note-list/ListPropertiesPopover.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/note-list/ListPropertiesPopover.tsx b/src/components/note-list/ListPropertiesPopover.tsx index 7ab8fb7a..f601020f 100644 --- a/src/components/note-list/ListPropertiesPopover.tsx +++ b/src/components/note-list/ListPropertiesPopover.tsx @@ -34,6 +34,7 @@ function SortablePropertyItem({ id, checked, onToggle }: { id: string; checked: const { attributes, listeners, setNodeRef, transform, transition } = useSortable({ id }) const style = { transform: CSS.Transform.toString(transform), transition } const inputId = propertyInputId(id) + const dragAttributes = { ...attributes, tabIndex: -1 } return (