diff --git a/ui/jsp/cluster.jsp b/ui/jsp/cluster.jsp
index 2e5f4fe1e8b..baed33f2f43 100644
--- a/ui/jsp/cluster.jsp
+++ b/ui/jsp/cluster.jsp
@@ -128,13 +128,23 @@ dictionary = {
-
+
+
diff --git a/ui/scripts/cloud.core.cluster.js b/ui/scripts/cloud.core.cluster.js
index 982ceea6ede..3a76cd4d42f 100644
--- a/ui/scripts/cloud.core.cluster.js
+++ b/ui/scripts/cloud.core.cluster.js
@@ -73,6 +73,7 @@ function clusterJsonToDetailsTab() {
$thisTab.find("#hypervisortype").text(fromdb(jsonObj.hypervisortype));
$thisTab.find("#clustertype").text(fromdb(jsonObj.clustertype));
$thisTab.find("#allocationstate").text(fromdb(jsonObj.allocationstate));
+ $thisTab.find("#managedstate").text(fromdb(jsonObj.managedstate));
//actions ***
clusterBuildActionMenu(jsonObj);
@@ -105,6 +106,8 @@ function clusterClearDetailsTab() {
$thisTab.find("#podname").text("");
$thisTab.find("#hypervisortype").text("");
$thisTab.find("#clustertype").text("");
+ $thisTab.find("#allocationstate").text("");
+ $thisTab.find("#managedstate").text("");
//actions ***
var $actionMenu = $thisTab.find("#action_link #action_menu");