summaryrefslogtreecommitdiff
path: root/frontend/src/containers/app/sidebars/topology/rack/MachineContainer.js
diff options
context:
space:
mode:
Diffstat (limited to 'frontend/src/containers/app/sidebars/topology/rack/MachineContainer.js')
-rw-r--r--frontend/src/containers/app/sidebars/topology/rack/MachineContainer.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/frontend/src/containers/app/sidebars/topology/rack/MachineContainer.js b/frontend/src/containers/app/sidebars/topology/rack/MachineContainer.js
index f205257e..89818f1d 100644
--- a/frontend/src/containers/app/sidebars/topology/rack/MachineContainer.js
+++ b/frontend/src/containers/app/sidebars/topology/rack/MachineContainer.js
@@ -11,11 +11,11 @@ const mapStateToProps = (state, ownProps) => {
if (inSimulation) {
if (
state.states.machine[state.currentTick] &&
- state.states.machine[state.currentTick][machine.id]
+ state.states.machine[state.currentTick][machine._id]
) {
machineLoad = getStateLoad(
state.loadMetric,
- state.states.machine[state.currentTick][machine.id],
+ state.states.machine[state.currentTick][machine._id],
)
}
}