From 2c34b59900cad72e935dea04179c26ad8968d252 Mon Sep 17 00:00:00 2001 From: soufiane Date: Thu, 23 May 2024 11:50:03 +0200 Subject: [PATCH] wait #6927 --- js/quiz.screen.outro.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/quiz.screen.outro.js b/js/quiz.screen.outro.js index dd0d664..4c4bddb 100644 --- a/js/quiz.screen.outro.js +++ b/js/quiz.screen.outro.js @@ -269,7 +269,7 @@ 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 !== 'null' ? review.question : '' + '

'; + html += '

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

'; html += '

'+answersUser[i]+'

' } -- 2.39.5