mirror of https://github.com/apache/cloudstack.git
CLOUDSTACK-6666: UI > network > VPC > Router > Public IP Addresses > IP Address detailView > Configuration tab > Port Forwarding > Select VM screen > implement keyword search.
This commit is contained in:
parent
a771c7d496
commit
48e996f43e
|
|
@ -4110,18 +4110,18 @@
|
|||
dataProvider: singleVmSecondaryIPSubselect
|
||||
},
|
||||
dataProvider: function(args) {
|
||||
var networkid;
|
||||
if ('vpc' in args.context)
|
||||
var data = {};
|
||||
listViewDataProvider(args, data);
|
||||
|
||||
var networkid;
|
||||
if ('vpc' in args.context) {
|
||||
networkid = args.context.multiData.tier;
|
||||
else
|
||||
} else {
|
||||
networkid = args.context.ipAddresses[0].associatednetworkid;
|
||||
|
||||
var data = {
|
||||
page: args.page,
|
||||
pageSize: pageSize,
|
||||
listAll: true,
|
||||
networkid: networkid
|
||||
};
|
||||
}
|
||||
$.extend(data, {
|
||||
networkid: networkid
|
||||
});
|
||||
|
||||
if (!args.context.projects) {
|
||||
$.extend(data, {
|
||||
|
|
|
|||
Loading…
Reference in New Issue