diff --git a/src/fireedge/src/client/components/Tabs/Vm/Info/information.js b/src/fireedge/src/client/components/Tabs/Vm/Info/information.js index 65c842391b..c749236ee2 100644 --- a/src/fireedge/src/client/components/Tabs/Vm/Info/information.js +++ b/src/fireedge/src/client/components/Tabs/Vm/Info/information.js @@ -77,7 +77,7 @@ const InformationPanel = ({ vm = {}, actions }) => { } = getLastHistory(vm) useEffect(() => { - getCluster({ id: clusterId }) + if (clusterId) getCluster({ id: clusterId }) }, [clusterId]) const clusterName = +clusterId === -1 ? 'default' : cluster?.NAME ?? '--'