summaryrefslogtreecommitdiff
path: root/frontend/src/containers/app/sidebars/topology/rack/MachineListContainer.js
diff options
context:
space:
mode:
Diffstat (limited to 'frontend/src/containers/app/sidebars/topology/rack/MachineListContainer.js')
-rw-r--r--frontend/src/containers/app/sidebars/topology/rack/MachineListContainer.js22
1 files changed, 11 insertions, 11 deletions
diff --git a/frontend/src/containers/app/sidebars/topology/rack/MachineListContainer.js b/frontend/src/containers/app/sidebars/topology/rack/MachineListContainer.js
index b19a50ae..3a797ed5 100644
--- a/frontend/src/containers/app/sidebars/topology/rack/MachineListContainer.js
+++ b/frontend/src/containers/app/sidebars/topology/rack/MachineListContainer.js
@@ -1,15 +1,15 @@
-import { connect } from "react-redux";
-import MachineListComponent from "../../../../../components/app/sidebars/topology/rack/MachineListComponent";
+import { connect } from 'react-redux'
+import MachineListComponent from '../../../../../components/app/sidebars/topology/rack/MachineListComponent'
const mapStateToProps = state => {
- return {
- machineIds:
- state.objects.rack[
- state.objects.tile[state.interactionLevel.tileId].objectId
- ].machineIds
- };
-};
+ return {
+ machineIds:
+ state.objects.rack[
+ state.objects.tile[state.interactionLevel.tileId].objectId
+ ].machineIds,
+ }
+}
-const MachineListContainer = connect(mapStateToProps)(MachineListComponent);
+const MachineListContainer = connect(mapStateToProps)(MachineListComponent)
-export default MachineListContainer;
+export default MachineListContainer