[UI] bug fix: the host uuid is wrong if it is dedicated to a domain

This commit is contained in:
Wei Zhou 2014-12-04 15:28:57 +01:00
parent d4605556c6
commit 4608053ed7
1 changed files with 3 additions and 2 deletions

View File

@ -16149,8 +16149,9 @@
if (json.listdedicatedhostsresponse.dedicatedhost != undefined) {
var hostItem = json.listdedicatedhostsresponse.dedicatedhost[0];
if (hostItem.domainid != null) {
$.extend(item, hostItem, {
isdedicated: _l('label.yes')
$.extend(item, {
isdedicated: _l('label.yes'),
domainid: hostItem.domainid
});
}
} else