From 54ba532ebd6a187e8ca6c73c4cf1ff3e9be05aa0 Mon Sep 17 00:00:00 2001 From: Dan Stillman Date: Thu, 7 Jul 2016 05:19:26 -0400 Subject: [PATCH] Fix display of parent item title in popup note window --- chrome/content/zotero/bindings/noteeditor.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/chrome/content/zotero/bindings/noteeditor.xml b/chrome/content/zotero/bindings/noteeditor.xml index 15fa5030d..485c47aed 100644 --- a/chrome/content/zotero/bindings/noteeditor.xml +++ b/chrome/content/zotero/bindings/noteeditor.xml @@ -402,7 +402,7 @@ parentText.removeChild(parentText.firstChild); } - if (this._parent && this.getAttribute('notitle') != '1') { + if (this._parentItem && this.getAttribute('notitle') != '1') { this.id('parent-row').hidden = undefined; this.id('parentLabel').value = Zotero.getString('pane.item.parentItem'); parentText.appendChild(document.createTextNode(this._parentItem.getDisplayTitle(true)));