From: soufiane Date: Thu, 23 May 2024 09:43:18 +0000 (+0200) Subject: wait #6927 X-Git-Url: http://git.cubedesigners.com/?a=commitdiff_plain;h=ee426df5e100af7451549c56b0f8fa6e6c204675;p=fluidbook-toolbox-quiz.git wait #6927 --- diff --git a/js/quiz.screen.outro.js b/js/quiz.screen.outro.js index 29581b7..91842b8 100644 --- a/js/quiz.screen.outro.js +++ b/js/quiz.screen.outro.js @@ -269,12 +269,12 @@ QuizScreenOutro.prototype = { html += '

' + this.quiz.l10n.__('Question :index', {index: i + 1}) + titleType + '

'; if (review.type === "text" || review.type === "email" || review.type === "textarea" || review.type === "country") { - html += '

' + review.question ? review.question : '' + '

'; + html += '

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

'; html += '

'+answersUser[i]+'

' } if (review.type === "multiple") { - html += '

' + review.question ? review.question : '' + '

'; + html += '

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

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