This is an automated email from the ASF dual-hosted git repository.

sureshanaparti pushed a commit to branch 4.19
in repository https://gitbox.apache.org/repos/asf/cloudstack.git


The following commit(s) were added to refs/heads/4.19 by this push:
     new 374ea7d4823 UI: fix "Request failed." error when open vnf appliances 
tab of network (#9334)
374ea7d4823 is described below

commit 374ea7d4823ad1c03ce6a3e7362bedbe1589a7c1
Author: Wei Zhou <[email protected]>
AuthorDate: Thu Jul 4 14:02:52 2024 +0200

    UI: fix "Request failed." error when open vnf appliances tab of network 
(#9334)
---
 ui/src/views/network/VnfAppliancesTab.vue | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/ui/src/views/network/VnfAppliancesTab.vue 
b/ui/src/views/network/VnfAppliancesTab.vue
index 413e31bed1e..0db85323d15 100644
--- a/ui/src/views/network/VnfAppliancesTab.vue
+++ b/ui/src/views/network/VnfAppliancesTab.vue
@@ -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) {

Reply via email to