From 783575de29988288571982677309a46fbd91c92a Mon Sep 17 00:00:00 2001 From: Jessica Wang Date: Wed, 14 Sep 2011 12:07:34 -0700 Subject: [PATCH] bug 11441: cloudStack - host page - Edit Host - fix a bug that hosttags editing field didn't get refresh when clicking different hosts in middle menu. --- ui/scripts/cloud.core.host.js | 1 + 1 file changed, 1 insertion(+) diff --git a/ui/scripts/cloud.core.host.js b/ui/scripts/cloud.core.host.js index 4a248318fc7..4d9c9f8e2be 100644 --- a/ui/scripts/cloud.core.host.js +++ b/ui/scripts/cloud.core.host.js @@ -147,6 +147,7 @@ function hostJsonToDetailsTab() { $thisTab.find("#grid_header_title").text(fromdb(jsonObj.name)); $thisTab.find("#name").text(fromdb(jsonObj.name)); $thisTab.find("#hosttags").text(fromdb(jsonObj.hosttags)); + $thisTab.find("#hosttags_edit").val(fromdb(jsonObj.hosttags)); setHostStateInRightPanel(fromdb(jsonObj.state), $thisTab.find("#state"));