From 3cad282415dd1072833837d4cbf96bf4998bb234 Mon Sep 17 00:00:00 2001 From: soufiane Date: Tue, 23 Jan 2024 12:38:37 +0100 Subject: [PATCH] wait #6656 @0:10 --- js/quiz.screen.outro.js | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/js/quiz.screen.outro.js b/js/quiz.screen.outro.js index 4e56a64..2cfea24 100644 --- a/js/quiz.screen.outro.js +++ b/js/quiz.screen.outro.js @@ -242,7 +242,11 @@ QuizScreenOutro.prototype = { if(c['type'] === "match" && !quiz.score.isPassed() && c['answers'][answersUser[i][k_]] > 0) { c_['proposition'] = c['answers'][answersUser[i][k_]]['proposition'] } - c_['status'] = status[i].answers[k_] + if(c['type'] === "multiple") { + c_['status'] = status[i].answers[answersUser[i][k_]] + } else { + c_['status'] = status[i].answers[k_] + } return c_ }), 'status': status[i].ok, -- 2.39.5