summaryrefslogtreecommitdiff
path: root/src/components/app/sidebars/topology/building
diff options
context:
space:
mode:
authorGeorgios Andreadis <g.andreadis@student.tudelft.nl>2017-11-08 10:28:33 +0100
committerGeorgios Andreadis <g.andreadis@student.tudelft.nl>2017-11-08 10:28:33 +0100
commit1f4616cbf9c82e4976d1f4b4c018d5e9ff83ad10 (patch)
tree114400610f6d9708f774ac8af8954588bbf50fb3 /src/components/app/sidebars/topology/building
parent2f71cb1c9fd3e649a1f0e6f713922a73372f064e (diff)
Implement room editing
Allows for rooms to be edited from the room context menu. Fixes #24
Diffstat (limited to 'src/components/app/sidebars/topology/building')
-rw-r--r--src/components/app/sidebars/topology/building/NewRoomConstructionComponent.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/app/sidebars/topology/building/NewRoomConstructionComponent.js b/src/components/app/sidebars/topology/building/NewRoomConstructionComponent.js
index a559c8dd..7b049642 100644
--- a/src/components/app/sidebars/topology/building/NewRoomConstructionComponent.js
+++ b/src/components/app/sidebars/topology/building/NewRoomConstructionComponent.js
@@ -8,7 +8,7 @@ const NewRoomConstructionComponent = ({
}) => {
if (currentRoomInConstruction === -1) {
return (
- <div className="btn btn-primary btn-block" onClick={onStart}>
+ <div className="btn btn-outline-primary btn-block" onClick={onStart}>
<span className="fa fa-plus mr-2" />
Construct a new room
</div>