Skip to content
This repository has been archived by the owner on Aug 5, 2021. It is now read-only.

Commit

Permalink
fix vpc filter
Browse files Browse the repository at this point in the history
  • Loading branch information
Genki Sugawara committed May 6, 2012
1 parent 9245c99 commit e32fba5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ec2ui/content/ec2ui/instancesview.js
Expand Up @@ -836,7 +836,7 @@ var ec2ui_InstancesTreeView = {
}

for (var i in vpcs) {
vpcMenu.appendItem(vpcs[i].id + " (" + vpcs[i].cidr + ")" + (vpcs[i].tag == null ? '' : " [" + vpcs[i].tag + "]"), vpcs[i].id);
vpcMenu.appendItem(vpcs[i].id + (vpcs[i].tag == null ? '' : " [" + vpcs[i].tag + "]"), vpcs[i].id);
}
},

Expand Down

0 comments on commit e32fba5

Please sign in to comment.