Skip to content
Snippets Groups Projects
Commit 60ead485 authored by Todd Dembrey's avatar Todd Dembrey
Browse files

Ensure that all answers are bleachable

parent 2c0c6a83
No related branches found
No related tags found
No related merge requests found
......@@ -92,7 +92,7 @@ class ReviewListView(ListView):
# Update the stored value to the display value
value = choices[int(value)]
review_data.setdefault(field.label, []).append(value)
review_data.setdefault(field.label, []).append(str(value))
return super().get_context_data(
submission=self.submission,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment