summaryrefslogtreecommitdiff
path: root/src/components/map/groups
diff options
context:
space:
mode:
authorGeorgios Andreadis <g.andreadis@student.tudelft.nl>2017-09-04 09:10:46 +0200
committerGeorgios Andreadis <g.andreadis@student.tudelft.nl>2017-09-23 10:05:57 +0200
commit6f3afd0317a8e549f77ad6764f6dbe4d4953b67c (patch)
tree767379e013d56b87ac814327f6fc4d789c23947e /src/components/map/groups
parentf4389bd0df1669969339b8b43b61fb78e7c1be25 (diff)
Add plus icon component
Diffstat (limited to 'src/components/map/groups')
-rw-r--r--src/components/map/groups/RackGroup.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/map/groups/RackGroup.js b/src/components/map/groups/RackGroup.js
index 9bc28331..9583b234 100644
--- a/src/components/map/groups/RackGroup.js
+++ b/src/components/map/groups/RackGroup.js
@@ -6,7 +6,7 @@ import TileObject from "../elements/TileObject";
const RackGroup = ({tile}) => (
<Group>
- <TileObject tile={tile} color={RACK_BACKGROUND_COLOR}/>
+ <TileObject positionX={tile.positionX} positionY={tile.positionY} color={RACK_BACKGROUND_COLOR}/>
</Group>
);