From ee9ebc6152627fb693e682bd268f6486c97488bb Mon Sep 17 00:00:00 2001 From: Martynas Bagdonas Date: Wed, 30 Jun 2021 17:00:08 +0300 Subject: [PATCH] Fix contextPane note regression that unpurposely enables read-only mode --- chrome/content/zotero/contextPane.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/chrome/content/zotero/contextPane.js b/chrome/content/zotero/contextPane.js index 672a9de3e4..4c52376e06 100644 --- a/chrome/content/zotero/contextPane.js +++ b/chrome/content/zotero/contextPane.js @@ -705,7 +705,7 @@ var ZoteroContextPane = new function () { if (!item) { return; } - var readOnly = (item.libraryID); + var readOnly = _isLibraryReadOnly(item.libraryID); var context = _getNotesContext(item.libraryID); if (context) { var { editor, node } = context;