From 4608053ed7ccd03136a60ea5ce4aa582a3e23fcb Mon Sep 17 00:00:00 2001 From: Wei Zhou Date: Thu, 4 Dec 2014 15:28:57 +0100 Subject: [PATCH] [UI] bug fix: the host uuid is wrong if it is dedicated to a domain --- ui/scripts/system.js | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/ui/scripts/system.js b/ui/scripts/system.js index 58b7a53eb87..57150c7eb75 100644 --- a/ui/scripts/system.js +++ b/ui/scripts/system.js @@ -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