From 0fb9548326c5b219bf30f0f2299cb6347d66ebca Mon Sep 17 00:00:00 2001 From: Dan Stillman Date: Fri, 29 Nov 2019 23:28:23 -0700 Subject: [PATCH] Fix tags box context menu --- chrome/content/zotero/itemPane.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/chrome/content/zotero/itemPane.js b/chrome/content/zotero/itemPane.js index 7bb2c24e07..904da3bfc9 100644 --- a/chrome/content/zotero/itemPane.js +++ b/chrome/content/zotero/itemPane.js @@ -325,7 +325,7 @@ var ZoteroItemPane = new function() { this.onTagsContextPopupShowing = function () { - if (!_lastItem.editable) { + if (!_lastItem.isEditable()) { return false; } }