diff --git a/ui/scripts/cloud.core.serviceoffering.js b/ui/scripts/cloud.core.serviceoffering.js index 0bfd5e55d92..041ae02a3d2 100644 --- a/ui/scripts/cloud.core.serviceoffering.js +++ b/ui/scripts/cloud.core.serviceoffering.js @@ -332,7 +332,7 @@ function serviceOfferingJsonToDetailsTab() { $thisTab.find("#storagetype").text(fromdb(jsonObj.storagetype)); $thisTab.find("#cpu").text(jsonObj.cpunumber + " x " + convertHz(jsonObj.cpuspeed)); $thisTab.find("#memory").text(convertBytes(parseInt(jsonObj.memory)*1024*1024)); - $thisTab.find("#network_rate").text(jsonObj.networkrate); + $thisTab.find("#network_rate").text(fromdb(jsonObj.networkrate)); setBooleanReadField(jsonObj.offerha, $thisTab.find("#offerha")); setBooleanEditField(jsonObj.offerha, $thisTab.find("#offerha_edit"));