scripts: Fix UI issue when deploying instance through host view

Signed-off-by: Rohit Yadav <rohit.yadav@shapeblue.com>
This commit is contained in:
Rohit Yadav 2014-12-12 23:40:48 +05:30
parent afe1323a54
commit 5b56c7fcb5
1 changed files with 5 additions and 2 deletions

View File

@ -819,8 +819,11 @@
});
}
if (g_hostid != null)
array1.push("&hostid=" + g_hostid);
if (g_hostid != null) {
$.extend(deployVmData, {
hostid: g_hostid
});
}
$.ajax({
url: createURL('deployVirtualMachine'),