mirror of https://github.com/apache/cloudstack.git
UI: fix "Request failed." error when open vnf appliances tab of network (#9334)
This commit is contained in:
parent
94e5ceff7f
commit
374ea7d482
|
|
@ -131,7 +131,7 @@ export default {
|
|||
}
|
||||
this.fetchLoading = true
|
||||
api('listVnfAppliances', params).then(json => {
|
||||
this.virtualmachines = json.listvirtualmachinesresponse.virtualmachine || []
|
||||
this.virtualmachines = json.listvnfappliancesresponse.virtualmachine || []
|
||||
for (const vm of this.virtualmachines) {
|
||||
for (const vmnic of vm.nic) {
|
||||
if (vmnic.networkid === this.resource.id) {
|
||||
|
|
|
|||
Loading…
Reference in New Issue