commit 54ba532ebd6a187e8ca6c73c4cf1ff3e9be05aa0
parent d44eeb752b656b0f61abf1ace4316a7f90b7dfd4
Author: Dan Stillman <dstillman@zotero.org>
Date: Thu, 7 Jul 2016 05:19:26 -0400
Fix display of parent item title in popup note window
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git 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)));