From de4b7e6124254a192c897bdf0070b078a64ee563 Mon Sep 17 00:00:00 2001 From: Bastien Wirtz Date: Sat, 21 Oct 2023 14:24:05 +0200 Subject: Linting update --- src/components/services/Proxmox.vue | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/components/services/Proxmox.vue') 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); } -- cgit v1.2.3