Skip to content
Snippets Groups Projects
Commit 1b16f3e0 authored by D3B1RUM4N's avatar D3B1RUM4N
Browse files

fix: html text decoded

parent 315b2002
1 merge request!52Fix/53 last min fixes
Pipeline #303731 failed with stages
in 35 seconds
......@@ -4,6 +4,6 @@
'good-answer': good_answers[i],
'button-selection': true
}">
{{ answer.text }}
{{ decodeHtml(answer.text) }}
</button>
</div>
\ No newline at end of file
......@@ -4,8 +4,8 @@
<div class="title">
<h4>Question {{ actualQuestionIndex + 1 }}/{{ quiz.questions.length }}</h4>
<h5>Score : {{ score }}/{{ quiz.questions.length }}</h5>
<h5>Category : {{ actualQuestion.category.name }}</h5>
<h2>{{ actualQuestion.text }}</h2>
<h5>Category : {{ decodeHtml(actualQuestion.category.name) }}</h5>
<h2>{{ decodeHtml(actualQuestion.text) }}</h2>
</div>
</div>
<div class="answer-container" [class.disabled]="showNextQuestion">
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment