summaryrefslogtreecommitdiff
path: root/src/containers/map/RoomContainer.js
diff options
context:
space:
mode:
authorGeorgios Andreadis <g.andreadis@student.tudelft.nl>2017-09-05 09:30:42 +0200
committerGeorgios Andreadis <g.andreadis@student.tudelft.nl>2017-09-23 10:05:57 +0200
commit42778e8be409b97059fa519b53c303cdba502e01 (patch)
tree23d03a1f8a9f8d137bf723c72086a6d79406874f /src/containers/map/RoomContainer.js
parent6f3afd0317a8e549f77ad6764f6dbe4d4953b67c (diff)
Implement rack creation
Diffstat (limited to 'src/containers/map/RoomContainer.js')
-rw-r--r--src/containers/map/RoomContainer.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/containers/map/RoomContainer.js b/src/containers/map/RoomContainer.js
index 2d078e09..9edcb096 100644
--- a/src/containers/map/RoomContainer.js
+++ b/src/containers/map/RoomContainer.js
@@ -5,7 +5,7 @@ import RoomGroup from "../../components/map/groups/RoomGroup";
const mapStateToProps = (state, ownProps) => {
return {
interactionLevel: state.interactionLevel,
- currentRoomInConstruction: state.currentRoomInConstruction,
+ currentRoomInConstruction: state.construction.currentRoomInConstruction,
room: state.objects.room[ownProps.roomId],
};
};