1
0
mirror of https://github.com/OpenNebula/one.git synced 2025-03-23 22:50:09 +03:00

Feature #495: Fixed Deploy ID error on undeployed VMs

This commit is contained in:
Jaime Melis 2011-02-23 18:08:20 +01:00
parent e0fa485c84
commit b0cf374ca8

View File

@ -3021,7 +3021,7 @@ function updateVMInfo(request,vm){
</tr>\
<tr>\
<td class="key_td">Deploy ID</td>\
<td class="value_td">'+(vm_info.DEPLOY_ID ? vm_info.DEPLOY_ID : "-")+'</td>\
<td class="value_td">'+(typeof(vm_info.DEPLOY_ID) == "object" ? "-" : vm_info.DEPLOY_ID)+'</td>\
</tr>\
</table>\
<table id="vm_monitoring_table" class="info_table">\