From 3ae1663fcc345f2bf91336e75e5fc2d4a233181c Mon Sep 17 00:00:00 2001 From: soufiane Date: Thu, 23 May 2024 14:59:44 +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 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]+'

' } -- 2.39.5