Repository: cloudstack Updated Branches: refs/heads/master 402a3323f -> 59b0103a5
CLOUDSTACK-7637: UI > fix a bug produced by 4.5 feature "template accross multiple zones" > fix it by including all properties to jsonObj. Project: http://git-wip-us.apache.org/repos/asf/cloudstack/repo Commit: http://git-wip-us.apache.org/repos/asf/cloudstack/commit/59b0103a Tree: http://git-wip-us.apache.org/repos/asf/cloudstack/tree/59b0103a Diff: http://git-wip-us.apache.org/repos/asf/cloudstack/diff/59b0103a Branch: refs/heads/master Commit: 59b0103a5325074e0e0c105a9afd2b39a5e1117b Parents: 402a332 Author: Jessica Wang <jessica.w...@citrix.com> Authored: Fri Sep 26 12:02:48 2014 -0700 Committer: Jessica Wang <jessica.w...@citrix.com> Committed: Fri Sep 26 12:02:48 2014 -0700 ---------------------------------------------------------------------- ui/scripts/templates.js | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cloudstack/blob/59b0103a/ui/scripts/templates.js ---------------------------------------------------------------------- diff --git a/ui/scripts/templates.js b/ui/scripts/templates.js index d71a774..9665ffd 100644 --- a/ui/scripts/templates.js +++ b/ui/scripts/templates.js @@ -622,15 +622,10 @@ }); if (existing.length == 0) { - itemsView.push({ - id: item.id, - name: item.name, - description: item.description, - hypervisor: item.hypervisor, - ostypeid: item.ostypeid, + itemsView.push($.extend(item, { zones: item.zonename, zoneids: [item.zoneid] - }); + })); } else { existing[0].zones = 'label.multiplezones';