From a342cbc08a1add3b085fdfcb980e9a4d062b4caf Mon Sep 17 00:00:00 2001 From: Jessica Wang Date: Fri, 22 Jul 2011 15:44:22 -0700 Subject: [PATCH] bug 10647: cloudStack - property "privateip" in listRouters API response has been renamed to "linklocalip". Here is related UI change. --- ui/scripts/cloud.core.host.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/scripts/cloud.core.host.js b/ui/scripts/cloud.core.host.js index 63b9ffdac5c..9dbea475c20 100644 --- a/ui/scripts/cloud.core.host.js +++ b/ui/scripts/cloud.core.host.js @@ -432,7 +432,7 @@ function hostRouterJSONToTemplate(jsonObj, template) { template.find("#id").text(jsonObj.id); template.find("#name").text(fromdb(jsonObj.name)); template.find("#publicip").text(fromdb(jsonObj.publicip)); - template.find("#privateip").text(fromdb(jsonObj.privateip)); + template.find("#privateip").text(fromdb(jsonObj.linklocalip)); template.find("#guestipaddress").text(fromdb(jsonObj.guestipaddress)); template.find("#account").text(fromdb(jsonObj.account)); template.find("#domain").text(fromdb(jsonObj.domain));