Don't show "false" for empty notes after restart

This commit is contained in:
Dan Stillman 2016-06-10 19:44:33 -04:00
parent 41fe8365a9
commit 3de5ed1332

View File

@ -752,7 +752,7 @@ Zotero.Item.prototype.setField = function(field, value, loadIn) {
}
if (loadIn && this.isNote() && field == 110) { // title
this._noteTitle = value;
this._noteTitle = value ? value : "";
return true;
}