Skip to content

Commit

Permalink
Merge pull request #595 from NordicSemiconductor/fix-update-all-apps
Browse files Browse the repository at this point in the history
Update all only updates updatable apps
  • Loading branch information
Jonas authored Nov 2, 2021
2 parents 58581b4 + 8a3e27f commit f66a77d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/main/apps.js
Original file line number Diff line number Diff line change
Expand Up @@ -381,7 +381,8 @@ function decorateWithLatestVersion(officialApp, availableUpdates) {
...officialApp,
latestVersion,
upgradeAvailable:
latestVersion && officialApp.currentVersion !== latestVersion,
officialApp.currentVersion &&
officialApp.currentVersion !== latestVersion,
};
}

Expand Down

0 comments on commit f66a77d

Please sign in to comment.