bug 10647: cloudStack - property "privateip" in listRouters API response has been renamed to "linklocalip". Here is related UI change.

This commit is contained in:
Jessica Wang 2011-07-22 15:44:22 -07:00
parent 63d869facb
commit 5fdb167203

View File

@ -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));