Repository: cloudstack Updated Branches: refs/heads/4.4-forward 8a9092c3c -> 95b7330d5
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/95b7330d Tree: http://git-wip-us.apache.org/repos/asf/cloudstack/tree/95b7330d Diff: http://git-wip-us.apache.org/repos/asf/cloudstack/diff/95b7330d Branch: refs/heads/4.4-forward Commit: 95b7330d5696aa150f1845b76c6021885c919aea Parents: 8a9092c 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:02:22 2014 -0700 ---------------------------------------------------------------------- ui/scripts/vpc.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cloudstack/blob/95b7330d/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' }] }); }