mirror of
https://github.com/zotero/zotero.git
synced 2026-09-21 00:22:44 +00:00
Don't show "false" for empty notes after restart
This commit is contained in:
parent
41fe8365a9
commit
3de5ed1332
1 changed files with 1 additions and 1 deletions
|
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue