diff --git a/chrome/content/zotero/elements/notesBox.js b/chrome/content/zotero/elements/notesBox.js index fd0407c34d..531265876d 100644 --- a/chrome/content/zotero/elements/notesBox.js +++ b/chrome/content/zotero/elements/notesBox.js @@ -53,6 +53,10 @@ import { getCSSItemTypeIcon } from 'components/icons'; } set item(val) { + if (this.tabType !== "library") { + this.hidden = true; + return; + } if (val?.isRegularItem() && !val?.isFeedItem) { this.hidden = false; }