From 86c4bc23c7ba59dde20400fddac1dfedd56621b4 Mon Sep 17 00:00:00 2001 From: windingwind <33902321+windingwind@users.noreply.github.com> Date: Tue, 20 Jan 2026 17:56:04 +0100 Subject: [PATCH] Fix Libraries and Collections box editable field is undefined in note editor (#5702) fix: #5698 --- chrome/content/zotero/elements/noteEditor.js | 1 + 1 file changed, 1 insertion(+) diff --git a/chrome/content/zotero/elements/noteEditor.js b/chrome/content/zotero/elements/noteEditor.js index 7b43f6327c..46c59a2b1a 100644 --- a/chrome/content/zotero/elements/noteEditor.js +++ b/chrome/content/zotero/elements/noteEditor.js @@ -451,6 +451,7 @@ this._mode = val; this._id('related').editable = val == "edit"; this._id('tags').editable = val == "edit"; + this._id('libraries-collections').editable = val == "edit"; this.refresh(); }