Skip to content

Commit 4608053

Browse files
committed
[UI] bug fix: the host uuid is wrong if it is dedicated to a domain
1 parent d460555 commit 4608053

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

ui/scripts/system.js

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16149,8 +16149,9 @@
1614916149
if (json.listdedicatedhostsresponse.dedicatedhost != undefined) {
1615016150
var hostItem = json.listdedicatedhostsresponse.dedicatedhost[0];
1615116151
if (hostItem.domainid != null) {
16152-
$.extend(item, hostItem, {
16153-
isdedicated: _l('label.yes')
16152+
$.extend(item, {
16153+
isdedicated: _l('label.yes'),
16154+
domainid: hostItem.domainid
1615416155
});
1615516156
}
1615616157
} else

0 commit comments

Comments
 (0)