diff --git a/frontend/public/components/cluster-settings/cluster-settings.tsx b/frontend/public/components/cluster-settings/cluster-settings.tsx index 18d4eccb463..5f0f3464f48 100644 --- a/frontend/public/components/cluster-settings/cluster-settings.tsx +++ b/frontend/public/components/cluster-settings/cluster-settings.tsx @@ -42,7 +42,7 @@ export const getAvailableClusterUpdates = (cv) => { }; export const getCurrentClusterVersion = (cv) => { - return _.get(cv, 'status.current.version'); + return _.get(cv, 'status.desired.version'); };