redbox-mint / redbox

http://www.redboxresearchdata.com.au
GNU General Public License v2.0
5 stars 10 forks source link

Invalid json -- self-submission.json -- transition-control #57

Open Paul-Nguyen opened 10 years ago

Paul-Nguyen commented 10 years ago

config/src/main/config/home/form-configuration/self-submissionform.json

Under transition-control, we're missing a comma in default transitions. So the json ends up invalid due to the missing delimiter.

Fix by adding comma back in.

Currently: { "name": "Back", "type": "button"}, { "name": "Next", "form-submit-action":"save" "type": "button"}

should be:

{ "name": "Back", "type": "button"}, { "name": "Next", "form-submit-action":"save", "type": "button"}

?