diff --git a/ui/jsp/volume.jsp b/ui/jsp/volume.jsp index 0031e36feb4..a095a0239e0 100644 --- a/ui/jsp/volume.jsp +++ b/ui/jsp/volume.jsp @@ -168,6 +168,16 @@ +
+
+
+ Domain:
+
+
+
+
+
+
diff --git a/ui/scripts/cloud.core.volume.js b/ui/scripts/cloud.core.volume.js index 596a209a6c1..a53bbf15797 100644 --- a/ui/scripts/cloud.core.volume.js +++ b/ui/scripts/cloud.core.volume.js @@ -329,7 +329,8 @@ function volumeJsonToDetailsTab(){ $thisTab.find("#device_id").text(fromdb(jsonObj.deviceid)); $thisTab.find("#state").text(fromdb(jsonObj.state)); $thisTab.find("#storage").text(fromdb(jsonObj.storage)); - $thisTab.find("#account").text(fromdb(jsonObj.account)); + $thisTab.find("#account").text(fromdb(jsonObj.account)); + $thisTab.find("#domain").text(fromdb(jsonObj.domain)); $thisTab.find("#type").text(fromdb(jsonObj.type) + " (" + fromdb(jsonObj.storagetype) + " storage)"); $thisTab.find("#size").text((jsonObj.size == "0") ? "" : convertBytes(jsonObj.size)); if (jsonObj.virtualmachineid == null)