diff --git a/classquiz/socket_server/__init__.py b/classquiz/socket_server/__init__.py
index ba566d8..04c235d 100644
--- a/classquiz/socket_server/__init__.py
+++ b/classquiz/socket_server/__init__.py
@@ -322,6 +322,7 @@ async def submit_answer(sid: str, data: dict):
print(data.dict()["complex_answer"], correct_answers)
if correct_answers == data.dict()["complex_answer"]:
answer_right = True
+ # TODO Set data.answer to a real value for export
elif game_data.questions[int(float(data.question_index))].type == QuizQuestionType.TEXT:
answer_right = False
diff --git a/frontend/src/lib/dashboard/main_slider.svelte b/frontend/src/lib/dashboard/main_slider.svelte
index fbe0e87..810d9dc 100644
--- a/frontend/src/lib/dashboard/main_slider.svelte
+++ b/frontend/src/lib/dashboard/main_slider.svelte
@@ -371,6 +371,18 @@
{/each}
+ {:else if question.type === QuizQuestionType.ORDER}
+
+ {#each question.answers as answer}
+
+
+ {answer.answer}
+
+
+ {/each}
+
{:else if question.type === QuizQuestionType.SLIDE}
{#each data.questions[selected_question].answers as answer, i (answer.id)}
diff --git a/frontend/src/lib/practice/question.svelte b/frontend/src/lib/practice/question.svelte
index 9b22577..8fa3749 100644
--- a/frontend/src/lib/practice/question.svelte
+++ b/frontend/src/lib/practice/question.svelte
@@ -3,12 +3,13 @@
- License, v. 2.0. If a copy of the MPL was not distributed with this
- file, You can obtain one at https://mozilla.org/MPL/2.0/.
-->
-
-