From 89e56a55ea0b286588636bcabcd2fb3a429d240c Mon Sep 17 00:00:00 2001 From: soufiane Date: Thu, 23 May 2024 11:39:27 +0200 Subject: [PATCH] wait #6927 --- js/quiz.screen.outro.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/js/quiz.screen.outro.js b/js/quiz.screen.outro.js index fcd40e6..29581b7 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 + '

'; + html += '

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

'; html += '

'+answersUser[i]+'

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

' + review.question + '

'; + html += '

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

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