From b55fa341cd724ccb46b5841867169512335ea788 Mon Sep 17 00:00:00 2001 From: soufiane Date: Thu, 23 May 2024 15:03:13 +0200 Subject: [PATCH] wait #6927 --- js/quiz.screen.outro.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/js/quiz.screen.outro.js b/js/quiz.screen.outro.js index 8bb1b81..fffe386 100644 --- a/js/quiz.screen.outro.js +++ b/js/quiz.screen.outro.js @@ -276,7 +276,9 @@ QuizScreenOutro.prototype = { } if (review.type === "multiple") { - html += '

' + review.question !== null ? review.question : '' + '

'; + if(review.question) { + html += '

' + review.question + '

'; + } html += '
' if(correctAnswers.length > 0) { -- 2.39.5