mirror of https://github.com/apache/cloudstack.git
cloudstack 3.0 UI - Network page - guest network section - only show guest networks that don't belong to any VPC. Guest networks that belong to VPC can only be seen under VPC section.
This commit is contained in:
parent
ecf730356d
commit
597fa03222
|
|
@ -345,7 +345,9 @@
|
|||
async: false,
|
||||
success: function(data) {
|
||||
args.response.success({
|
||||
data: data.listnetworksresponse.network
|
||||
data: $.grep(data.listnetworksresponse.network, function(item) {
|
||||
return (item.vpcid == null);
|
||||
})
|
||||
});
|
||||
},
|
||||
error: function(data) {
|
||||
|
|
|
|||
Loading…
Reference in New Issue