Skip to content

Commit

Permalink
Merge pull request #120 from adaptlearning/issue/1192
Browse files Browse the repository at this point in the history
Remove validation from feedback
  • Loading branch information
tomgreenfield authored Jan 20, 2017
2 parents e455134 + 4f4890b commit 20a802f
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions properties.schema
Original file line number Diff line number Diff line change
Expand Up @@ -345,31 +345,31 @@
},
"_feedback": {
"type":"object",
"required":true,
"required": false,
"title": "Feedback",
"properties":{
"correct": {
"type":"string",
"required":true,
"required": false,
"default": "",
"title": "Correct",
"inputType": "TextArea",
"validators": ["required"],
"validators": [],
"help": "Correct feedback for this question",
"translatable": true
},
"_incorrect": {
"type":"object",
"required":true,
"required": false,
"title": "Incorrect Feedback",
"properties":{
"final": {
"type":"string",
"required": true,
"required": false,
"default": "",
"title": "Incorrect Final",
"inputType": "TextArea",
"validators": ["required"],
"validators": [],
"help": "Incorrect feedback for the final attempt",
"translatable": true
},
Expand Down

0 comments on commit 20a802f

Please sign in to comment.