diff --git a/frontend/src/App/AppUpdatedModalContent.js b/frontend/src/App/AppUpdatedModalContent.js index 90c558270..0c4c5f91d 100644 --- a/frontend/src/App/AppUpdatedModalContent.js +++ b/frontend/src/App/AppUpdatedModalContent.js @@ -41,6 +41,10 @@ function mergeUpdates(items, version, prevVersion) { const mergedUpdate = Object.assign({}, appliedUpdates[0], { changes: appliedChanges }); + if (!appliedChanges.new.length && !appliedChanges.fixed.length) { + mergedUpdate.changes = null; + } + return mergedUpdate; }