Skip to content
Snippets Groups Projects
Unverified Commit e6c7b6fd authored by Ned Batchelder's avatar Ned Batchelder Committed by GitHub
Browse files

Merge pull request #26080 from open-craft/0x29a/fix_add_post

Fix Markdown errors on discussions tab 
parents 22522001 c8fc932c
No related branches found
No related tags found
No related merge requests found
...@@ -789,7 +789,7 @@ class DiscussionBoardFragmentView(EdxFragmentView): ...@@ -789,7 +789,7 @@ class DiscussionBoardFragmentView(EdxFragmentView):
works in conjunction with the Django pipeline to ensure that in development mode works in conjunction with the Django pipeline to ensure that in development mode
the files are loaded individually, but in production just the single bundle is loaded. the files are loaded individually, but in production just the single bundle is loaded.
""" """
return list(set(self.get_js_dependencies('discussion_vendor'))) return list(dict.fromkeys(self.get_js_dependencies('discussion_vendor')))
def js_dependencies(self): def js_dependencies(self):
""" """
......
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