From 63a416db407326a3f3a7b4e60a1320c5a9ee3a70 Mon Sep 17 00:00:00 2001 From: Dan Stillman Date: Sat, 29 Aug 2020 18:22:21 -0400 Subject: [PATCH] Fix display of note titles on startup (regression from noteSchemaVersion) --- chrome/content/zotero/xpcom/data/item.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/chrome/content/zotero/xpcom/data/item.js b/chrome/content/zotero/xpcom/data/item.js index c75585031e..31ed7a7f74 100644 --- a/chrome/content/zotero/xpcom/data/item.js +++ b/chrome/content/zotero/xpcom/data/item.js @@ -760,7 +760,7 @@ Zotero.Item.prototype.setField = function(field, value, loadIn) { } if (loadIn && this.isNote() && field == Zotero.ItemFields.getID('title')) { - this._noteTitle = value ? value : ""; + this._note.title = value ? value : ""; return true; }