mirror of
https://github.com/zotero/zotero.git
synced 2026-09-23 00:43:17 +00:00
Don't update citations that haven't changed, even on refresh
This commit is contained in:
parent
517d80f4dd
commit
f9b823d0e8
1 changed files with 1 additions and 1 deletions
|
|
@ -844,7 +844,7 @@ Zotero.Integration.Document.prototype._updateDocument = function(forceCitations,
|
|||
isRich = true;
|
||||
}
|
||||
|
||||
if(forceCitations || citation.properties.formattedCitation !== formattedCitation) {
|
||||
if(citation.properties.formattedCitation !== formattedCitation) {
|
||||
// Check if citation has been manually modified
|
||||
if(!ignoreCitationChanges && citation.properties.plainCitation) {
|
||||
var plainCitation = field.getText();
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue