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 5ec2514 commit 915fb58Copy full SHA for 915fb58
dash/dash-renderer/src/components/error/menu/VersionInfo.react.js
@@ -72,7 +72,7 @@ function shouldShowUpgradeNotification(currentDashVersion, newDashVersion) {
72
const lastDismissed = localStorage.getItem('lastDismissed');
73
const lastDismissedVersion = localStorage.getItem('lastDismissedVersion');
74
if (
75
- currentDashVersion == newDashVersion ||
+ compareVersions(currentDashVersion, newDashVersion) >=0 ||
76
showNotifications === 'false' ||
77
newDashVersion === undefined
78
) {
0 commit comments