Skip to content
Snippets Groups Projects
Commit 27b75ca7 authored by Calen Pennington's avatar Calen Pennington
Browse files

Use display_name in sequence title bar

parent 506c281b
No related branches found
No related tags found
No related merge requests found
......@@ -52,9 +52,9 @@ class SequenceModule(XModule):
contents.append({
'content': child.get_html(),
'title': "\n".join(
grand_child.name.strip()
grand_child.display_name.strip()
for grand_child in child.get_children()
if grand_child.name is not None
if grand_child.display_name is not None
),
'progress_status': Progress.to_js_status_str(progress),
'progress_detail': Progress.to_js_detail_str(progress),
......
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