From: soufiane Date: Thu, 23 May 2024 12:59:44 +0000 (+0200) Subject: wait #6927 X-Git-Url: http://git.cubedesigners.com/?a=commitdiff_plain;h=3ae1663fcc345f2bf91336e75e5fc2d4a233181c;p=fluidbook-toolbox-quiz.git wait #6927 --- diff --git a/js/quiz.screen.outro.js b/js/quiz.screen.outro.js index 4c4bddb..8bb1b81 100644 --- a/js/quiz.screen.outro.js +++ b/js/quiz.screen.outro.js @@ -269,7 +269,9 @@ 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 != null || review.question !== '' ? review.question : '' + '

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

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

'; + } html += '

'+answersUser[i]+'

' }