We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 915fb58 commit 4e8ca6aCopy full SHA for 4e8ca6a
dash/dash-renderer/src/components/error/menu/VersionInfo.react.js
@@ -72,9 +72,9 @@ function shouldShowUpgradeNotification(currentDashVersion, newDashVersion) {
72
const lastDismissed = localStorage.getItem('lastDismissed');
73
const lastDismissedVersion = localStorage.getItem('lastDismissedVersion');
74
if (
75
- compareVersions(currentDashVersion, newDashVersion) >=0 ||
76
- showNotifications === 'false' ||
77
- newDashVersion === undefined
+ newDashVersion === undefined ||
+ compareVersions(currentDashVersion, newDashVersion) >= 0 ||
+ showNotifications === 'false'
78
) {
79
return false;
80
} else if (
0 commit comments