Repository: cloudstack Updated Branches: refs/heads/master c2a0fb4e5 -> 37aabd199
CLOUDSTACK-6602: UI - VPC - createNetworkACL - fix a bug that caused wrong value being passed to action parameter in API call. Project: http://git-wip-us.apache.org/repos/asf/cloudstack/repo Commit: http://git-wip-us.apache.org/repos/asf/cloudstack/commit/37aabd19 Tree: http://git-wip-us.apache.org/repos/asf/cloudstack/tree/37aabd19 Diff: http://git-wip-us.apache.org/repos/asf/cloudstack/diff/37aabd19 Branch: refs/heads/master Commit: 37aabd19982db81fbad1767e46cfeaefd49e0b6f Parents: c2a0fb4 Author: Jessica Wang <jessica.w...@citrix.com> Authored: Wed Jun 11 15:37:28 2014 -0700 Committer: Jessica Wang <jessicaw...@apache.org> Committed: Wed Jun 11 16:10:56 2014 -0700 ---------------------------------------------------------------------- ui/scripts/vpc.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cloudstack/blob/37aabd19/ui/scripts/vpc.js ---------------------------------------------------------------------- diff --git a/ui/scripts/vpc.js b/ui/scripts/vpc.js index 020b9d7..83c5b83 100644 --- a/ui/scripts/vpc.js +++ b/ui/scripts/vpc.js @@ -83,11 +83,11 @@ select: function(args) { args.response.success({ data: [{ - name: 'label.allow', - description: 'label.allow' + name: 'Allow', + description: 'Allow' }, { - name: 'label.deny', - description: 'label.deny' + name: 'Deny', + description: 'Deny' }] }); }