Commit 054f4b93 by Calen Pennington

Fix titles in sequence module display

parent a3d5578c
...@@ -54,7 +54,7 @@ class SequenceModule(XModule): ...@@ -54,7 +54,7 @@ class SequenceModule(XModule):
'title': "\n".join( 'title': "\n".join(
grand_child.metadata['display_name'].strip() grand_child.metadata['display_name'].strip()
for grand_child in child.get_children() for grand_child in child.get_children()
if 'metadata' in grand_child.metadata if 'display_name' in grand_child.metadata
), ),
'progress_status': Progress.to_js_status_str(progress), 'progress_status': Progress.to_js_status_str(progress),
'progress_detail': Progress.to_js_detail_str(progress), 'progress_detail': Progress.to_js_detail_str(progress),
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment