From a4c75df1820150c1807a3cfd462abc2e0c0cde83 Mon Sep 17 00:00:00 2001 From: Abe Jellinek Date: Wed, 31 Jan 2024 12:52:56 -0500 Subject: [PATCH] Don't allow pinning Item Notes and All Notes Fixes #3626 --- chrome/content/zotero/elements/itemPaneSidenav.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/chrome/content/zotero/elements/itemPaneSidenav.js b/chrome/content/zotero/elements/itemPaneSidenav.js index a1539e995c..db60de16be 100644 --- a/chrome/content/zotero/elements/itemPaneSidenav.js +++ b/chrome/content/zotero/elements/itemPaneSidenav.js @@ -335,7 +335,7 @@ } isPanePinnable(id) { - return id !== 'info'; + return id !== 'info' && id !== 'context-all-notes' && id !== 'context-item-notes'; } showPendingPane() {