Don't show "false" for empty notes after restart
This commit is contained in:
parent
41fe8365a9
commit
3de5ed1332
|
@ -752,7 +752,7 @@ Zotero.Item.prototype.setField = function(field, value, loadIn) {
|
||||||
}
|
}
|
||||||
|
|
||||||
if (loadIn && this.isNote() && field == 110) { // title
|
if (loadIn && this.isNote() && field == 110) { // title
|
||||||
this._noteTitle = value;
|
this._noteTitle = value ? value : "";
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user