mirror of https://github.com/apache/cloudstack.git
[UI] bug fix: the host uuid is wrong if it is dedicated to a domain
This commit is contained in:
parent
d4605556c6
commit
4608053ed7
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in New Issue