aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--src/components/services/Proxmox.vue3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/components/services/Proxmox.vue b/src/components/services/Proxmox.vue
index 092d077..1d2c2c9 100644
--- a/src/components/services/Proxmox.vue
+++ b/src/components/services/Proxmox.vue
@@ -79,12 +79,11 @@
79 this.vms.total += vms.data.length; 79 this.vms.total += vms.data.length;
80 this.vms.running += vms.data.filter( i => i.status === 'running' ).length; 80 this.vms.running += vms.data.filter( i => i.status === 'running' ).length;
81 this.error = false; 81 this.error = false;
82 this.loading = false;
83 } catch(err) { 82 } catch(err) {
84 console.log(err); 83 console.log(err);
85 this.loading = false;
86 this.error = true; 84 this.error = true;
87 } 85 }
86 this.loading = false;
88 }, 87 },
89 }, 88 },
90 }; 89 };