CLOUDSTACK-6602: UI - VPC - createNetworkACL - fix a bug that caused wrong value being passed to action parameter in API call.

This commit is contained in:
Jessica Wang 2014-06-11 15:37:28 -07:00 committed by Jessica Wang
parent c2a0fb4e52
commit 37aabd1998
1 changed files with 4 additions and 4 deletions

View File

@ -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'
}]
});
}