html += '<p class="position title-section">' + this.quiz.l10n.__('Question :index', {index: i + 1}) + titleType + '</p>';
if (review.type === "text" || review.type === "email" || review.type === "textarea" || review.type === "country") {
- html += '<p class="question title-block">' + review.question ? review.question : '' + '</p>';
+ html += '<p class="question title-block">' + review.question != null ? review.question : '' + '</p>';
html += '<p>'+answersUser[i]+'</p>'
}
if (review.type === "multiple") {
- html += '<p class="question title-block">' + review.question ? review.question : '' + '</p>';
+ html += '<p class="question title-block">' + review.question !== null ? review.question : '' + '</p>';
html += '<div class="multiple-wrapper">'
if(correctAnswers.length > 0) {