From 7161126775a3fd6b57de78cbb7ed6a7d437be300 Mon Sep 17 00:00:00 2001 From: vichansson Date: Wed, 11 Dec 2024 11:02:19 +0200 Subject: [PATCH] B OpenNebula/one#6788: Fix host graph API call (#3324) Signed-off-by: Victor Hansson --- src/fireedge/src/client/components/Tabs/Host/Graphs/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/fireedge/src/client/components/Tabs/Host/Graphs/index.js b/src/fireedge/src/client/components/Tabs/Host/Graphs/index.js index 4695b267a57..d2cb7837fb5 100644 --- a/src/fireedge/src/client/components/Tabs/Host/Graphs/index.js +++ b/src/fireedge/src/client/components/Tabs/Host/Graphs/index.js @@ -32,7 +32,7 @@ import { Tr } from 'client/components/HOC' const HostGraphTab = ({ id }) => { const { data: { MONITORING_DATA: { MONITORING: monitoring = [] } = {} } = {}, - } = useGetHostMonitoringQuery(id) || {} + } = useGetHostMonitoringQuery({ id: id }) || {} const cpuMemoryData = ( Array.isArray(monitoring) ? monitoring : [monitoring]