Skip to content

Commit 374ea7d

Browse files
UI: fix "Request failed." error when open vnf appliances tab of network (#9334)
1 parent 94e5cef commit 374ea7d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ui/src/views/network/VnfAppliancesTab.vue

+1-1
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ export default {
131131
}
132132
this.fetchLoading = true
133133
api('listVnfAppliances', params).then(json => {
134-
this.virtualmachines = json.listvirtualmachinesresponse.virtualmachine || []
134+
this.virtualmachines = json.listvnfappliancesresponse.virtualmachine || []
135135
for (const vm of this.virtualmachines) {
136136
for (const vmnic of vm.nic) {
137137
if (vmnic.networkid === this.resource.id) {

0 commit comments

Comments
 (0)