We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b5d34ca commit d7cb6b9Copy full SHA for d7cb6b9
frontend/src/resources/utils/get-cluster.ts
@@ -1567,11 +1567,7 @@ export function getHCUpgradeStatus(hostedCluster?: HostedClusterK8sResource) {
1567
const mostRecentVersion = pastVersions[0].image
1568
//If desired version is > current version and progressing, HC is currently updating
1569
1570
- return (
1571
- desiredVersion !== mostRecentVersion ||
1572
- pastVersions[0].state === 'Partial' ||
1573
- hostedCluster.spec.release.image != mostRecentVersion
1574
- )
+ return desiredVersion !== mostRecentVersion || pastVersions[0].state === 'Partial'
1575
} else {
1576
return
1577
}
0 commit comments