Skip to content

Commit

Permalink
Fix failure of field updates in merge pane
Browse files Browse the repository at this point in the history
  • Loading branch information
fbennett committed Feb 20, 2017
1 parent 18198c0 commit 4c126d3
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion chrome/content/zotero/duplicatesMerge.js
Expand Up @@ -141,7 +141,10 @@ var Zotero_Duplicates_Pane = new function () {
}

_masterItem = item;
itembox.item = item.clone(null, { includeCollections: true });
// itembox.item = item.clone(null, { includeCollections: true });
// ref is equivalent to item, but will force a fields update.
// Setting to item will update only creators.
itembox.ref = item.clone(null, { includeCollections: true });
}


Expand Down

0 comments on commit 4c126d3

Please sign in to comment.