We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9ff819d commit 4524e01Copy full SHA for 4524e01
1 file changed
ui/scripts/network.js
@@ -91,7 +91,7 @@
91
url: createURL('listNics'),
92
data: {
93
virtualmachineid: instance.id,
94
- networkId: network.id
+ networkid: (args.context.networkid != undefined) ? args.context.networkid : network.id
95
},
96
success: function(json) {
97
var nic = json.listnicsresponse.nic[0];
@@ -2465,6 +2465,10 @@
2465
networkid: $tierSelect.val(),
2466
vpcid: args.context.vpc[0].id
2467
});
2468
+ $.extend(args.context, {
2469
+ networkid: $tierSelect.val(),
2470
+ vpcid: args.context.vpc[0].id
2471
+ });
2472
} else if ('networks' in args.context && !args.context.ipAddresses[0].isportable) {
2473
$.extend(data, {
2474
networkid: args.context.networks[0].id
0 commit comments