Fixed maintenance release not showing as such in AppUpdatedModal

Fixes #1462
This commit is contained in:
Qstick 2021-12-30 17:15:16 -06:00
parent ba07e60be6
commit bed22b59bb
1 changed files with 4 additions and 0 deletions

View File

@ -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;
}