X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=src%2Fcomponents%2Fservices%2FProxmox.vue;h=5d0c950fcc041982b4fcfa3062aaac1709cbaec7;hb=de4b7e6124254a192c897bdf0070b078a64ee563;hp=813605038dbb6425858d0e857f961d2507491f50;hpb=ecf664d19b2a46c9d89a9a9c1128e22b7228607a;p=github%2Fbastienwirtz%2Fhomer.git diff --git a/src/components/services/Proxmox.vue b/src/components/services/Proxmox.vue index 8136050..5d0c950 100644 --- a/src/components/services/Proxmox.vue +++ b/src/components/services/Proxmox.vue @@ -122,7 +122,7 @@ export default { }; const status = await this.fetch( `/api2/json/nodes/${this.item.node}/status`, - options + options, ); // main metrics: const decimalsToShow = this.item.hide_decimals ? 0 : 1; @@ -139,7 +139,7 @@ export default { if (this.isValueShown("vms")) { const vms = await this.fetch( `/api2/json/nodes/${this.item.node}/qemu`, - options + options, ); this.parseVMsAndLXCs(vms, this.vms); } @@ -147,7 +147,7 @@ export default { if (this.isValueShown("lxcs")) { const lxcs = await this.fetch( `/api2/json/nodes/${this.item.node}/lxc`, - options + options, ); this.parseVMsAndLXCs(lxcs, this.lxcs); }