Ask user which courses they have taken

This commit is contained in:
2019-01-27 00:35:28 -07:00
parent 373d3efaff
commit 5f87ea8afd
3 changed files with 90 additions and 36 deletions
+1 -1
View File
@@ -15,7 +15,7 @@ class Tool extends Component {
} else if (status.state == 'armed') {
return { msg: 'Armed.', canArm: false, canDisarm: true, };
} else if (status.state == 'on') {
return { msg: 'On.', canArm: false, canDisarm: true, };
return { msg: 'On.', canArm: false, canDisarm: false, };
} else {
return { msg: 'Error: Impossible state!', canArm: false, canDisarm: false, };
}