Skip to content

Commit 8bcde02

Browse files
author
Jessica Wang
committed
CLOUDSTACK-6666: UI > network > VPC > Router > Public IP Addresses > IP Address detailView > Configuration tab > Port Forwarding > Select VM screen > implement keyword search.
1 parent 54db0d2 commit 8bcde02

1 file changed

Lines changed: 10 additions & 10 deletions

File tree

ui/scripts/network.js

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -4120,18 +4120,18 @@
41204120
dataProvider: singleVmSecondaryIPSubselect
41214121
},
41224122
dataProvider: function(args) {
4123-
var networkid;
4124-
if ('vpc' in args.context)
4123+
var data = {};
4124+
listViewDataProvider(args, data);
4125+
4126+
var networkid;
4127+
if ('vpc' in args.context) {
41254128
networkid = args.context.multiData.tier;
4126-
else
4129+
} else {
41274130
networkid = args.context.ipAddresses[0].associatednetworkid;
4128-
4129-
var data = {
4130-
page: args.page,
4131-
pageSize: pageSize,
4132-
listAll: true,
4133-
networkid: networkid
4134-
};
4131+
}
4132+
$.extend(data, {
4133+
networkid: networkid
4134+
});
41354135

41364136
if (!args.context.projects) {
41374137
$.extend(data, {

0 commit comments

Comments
 (0)