mirror of https://github.com/apache/cloudstack.git
fix bug 6154 (port forwarding should show user-assigned VM name instead of system-assigned VM name.
This commit is contained in:
parent
454524c4f1
commit
e8b63e7f9d
|
|
@ -409,7 +409,8 @@ function showNetworkingTab(p_domainId, p_account) {
|
|||
template.find("#row_container #protocol").text(json.protocol);
|
||||
template.find("#row_container_edit #protocol").text(json.protocol);
|
||||
|
||||
template.find("#row_container #vm_name").text(json.vmname);
|
||||
var vmName = getVmName(json.vmname, json.vmdisplayname); //json doesn't include vmdisplayname property(incorrect). Waiting for Bug 6241 to be fixed....
|
||||
template.find("#row_container #vm_name").text(vmName);
|
||||
var virtualMachineId = json.virtualmachineid;
|
||||
|
||||
$.ajax({
|
||||
|
|
|
|||
Loading…
Reference in New Issue