Skip to content

Commit

Permalink
Merge pull request #109 from claymccoy/sg_selection_misreads_vpc
Browse files Browse the repository at this point in the history
ASGARD-327 - fixed bug that kept security group selects from using id
  • Loading branch information
claymccoy committed Sep 11, 2012
2 parents aa3421c + 86abbda commit a6a127e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion grails-app/views/common/_securityGroupSelection.gsp
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
<div class="securityGroupsSelect vpcId${vpcIdForSecurityGroup ?: ''} ${vpcId == vpcIdForSecurityGroup ? '' : 'concealed'}">
<g:select name="selectedSecurityGroups" multiple="multiple" size="5"
disabled="${vpcId == vpcIdForSecurityGroup ? '' : 'true'}"
optionKey="${vpcId ? 'groupId' : 'groupName'}" optionValue="groupName" data-placeholder="Select security groups"
optionKey="${vpcIdForSecurityGroup ? 'groupId' : 'groupName'}" optionValue="groupName" data-placeholder="Select security groups"
from="${securityGroupsGroupedByVpcId[vpcIdForSecurityGroup]}" value="${selectedSecurityGroups}" />
</div>
</g:each>
Expand Down

0 comments on commit a6a127e

Please sign in to comment.