Repository: cloudstack Updated Branches: refs/heads/4.4 a1ab3364f -> b24f5355f
CLOUDSTACK-6602: UI - VPC - createNetworkACL - fix a bug that caused wrong value being passed to action parameter in API call. (cherry picked from commit 95b7330d5696aa150f1845b76c6021885c919aea) Project: http://git-wip-us.apache.org/repos/asf/cloudstack/repo Commit: http://git-wip-us.apache.org/repos/asf/cloudstack/commit/b24f5355 Tree: http://git-wip-us.apache.org/repos/asf/cloudstack/tree/b24f5355 Diff: http://git-wip-us.apache.org/repos/asf/cloudstack/diff/b24f5355 Branch: refs/heads/4.4 Commit: b24f5355f3644bda11168c911790bbff11607e0b Parents: a1ab336 Author: Jessica Wang <[email protected]> Authored: Wed Jun 11 15:37:28 2014 -0700 Committer: Daan Hoogland <[email protected]> Committed: Thu Jun 12 12:21:34 2014 +0200 ---------------------------------------------------------------------- ui/scripts/vpc.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cloudstack/blob/b24f5355/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' }] }); }
