diff options
| author | Georgios Andreadis <g.andreadis@student.tudelft.nl> | 2017-09-07 11:38:42 +0200 |
|---|---|---|
| committer | Georgios Andreadis <g.andreadis@student.tudelft.nl> | 2017-09-23 10:05:58 +0200 |
| commit | e9909159dc5db91eda12437e18c1474cae848af7 (patch) | |
| tree | f34e0ca56b666f6a4ab1022e58a6dcd84b779725 /src/components/sidebars/topology/room | |
| parent | d5a92d3006561fd631279b68b23a1f8075b28bb8 (diff) | |
Implement first machine slot listing
Diffstat (limited to 'src/components/sidebars/topology/room')
| -rw-r--r-- | src/components/sidebars/topology/room/RackConstructionComponent.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/components/sidebars/topology/room/RackConstructionComponent.js b/src/components/sidebars/topology/room/RackConstructionComponent.js index 8298eade..894ffdf7 100644 --- a/src/components/sidebars/topology/room/RackConstructionComponent.js +++ b/src/components/sidebars/topology/room/RackConstructionComponent.js @@ -1,7 +1,7 @@ import React from "react"; -const RackConstructionComponent = ({inObjectConstructionMode, onStart, onStop}) => { - if (inObjectConstructionMode) { +const RackConstructionComponent = ({inRackConstructionMode, onStart, onStop}) => { + if (inRackConstructionMode) { return ( <div className="btn btn-primary btn-block" onClick={onStop}> Stop rack construction |
