diff --git a/chrome/content/zotero/components/tabBar.jsx b/chrome/content/zotero/components/tabBar.jsx index 7fa6743277..e994cc0895 100644 --- a/chrome/content/zotero/components/tabBar.jsx +++ b/chrome/content/zotero/components/tabBar.jsx @@ -139,6 +139,7 @@ const TabBar = forwardRef(function (props, ref) { function handleDragStart(event, id, index) { // Library tab is not draggable if (index === 0) { + event.preventDefault(); return; } event.dataTransfer.effectAllowed = 'move';