CLOUDSTACK-747: UI - create network offering - default sourceNat type as per account instead of per zone.
Project: http://git-wip-us.apache.org/repos/asf/cloudstack/repo Commit: http://git-wip-us.apache.org/repos/asf/cloudstack/commit/29574267 Tree: http://git-wip-us.apache.org/repos/asf/cloudstack/tree/29574267 Diff: http://git-wip-us.apache.org/repos/asf/cloudstack/diff/29574267 Branch: refs/heads/rbd-snap-clone Commit: 29574267c9776aed5d17d2495602f03bfb4c3487 Parents: e720e8a Author: Jessica Wang <jessicaw...@apache.org> Authored: Tue May 21 11:59:03 2013 -0700 Committer: Jessica Wang <jessicaw...@apache.org> Committed: Wed May 22 10:48:44 2013 -0700 ---------------------------------------------------------------------- ui/scripts/configuration.js | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cloudstack/blob/29574267/ui/scripts/configuration.js ---------------------------------------------------------------------- diff --git a/ui/scripts/configuration.js b/ui/scripts/configuration.js index fdeaba0..808b342 100644 --- a/ui/scripts/configuration.js +++ b/ui/scripts/configuration.js @@ -1741,9 +1741,9 @@ dependsOn: 'service.SourceNat.isEnabled', select: function(args) { args.response.success({ - data: [ - { id: 'perzone', description: 'Per zone'}, - { id: 'peraccount', description: 'Per account'} + data: [ + { id: 'peraccount', description: 'Per account'}, + { id: 'perzone', description: 'Per zone'} ] }); }