Compare commits

...

4 commits

Author SHA1 Message Date
Christopher (Cris) Fuhrman
f4e21ee7a9
Merge pull request #175 from ets-cfuhrman-pfe/JubaAzul/issue170
Some checks are pending
CI/CD Pipeline for Backend / build_and_push_backend (push) Waiting to run
CI/CD Pipeline for Nginx Router / build_and_push_nginx (push) Waiting to run
CI/CD Pipeline for Frontend / build_and_push_frontend (push) Waiting to run
Tests / tests (client) (push) Waiting to run
Tests / tests (server) (push) Waiting to run
LaTeX mal affichée quand on lance le quiz (mais ok en Prévisualisation)
2025-01-09 16:30:09 -05:00
Christopher (Cris) Fuhrman
ecf4f9a819
Merge pull request #174 from ets-cfuhrman-pfe/JubaAzul/issue74
Ajustement de l'interface problématique dans l'éditeur de quiz
2025-01-09 16:28:57 -05:00
JubaAzul
ebd6101a64 LaTeX mal affichée quand on lance le quiz (mais ok en Prévisualisation)
Fixes #170
2025-01-08 16:45:48 -05:00
JubaAzul
c3de76cd20 Ajustement de l'interface problématique dans l'éditeur de quiz
Fixes #74
2025-01-08 13:48:03 -05:00
2 changed files with 1 additions and 2 deletions

View file

@ -56,7 +56,7 @@ const MultipleChoiceQuestion: React.FC<Props> = (props) => {
(choice.isCorrect ? '✅' : '❌')}
<div className={`circle ${selected}`}>{alphabet[i]}</div>
<div className={`answer-text ${selected}`}>
{formatLatex(choice.text.text)}
<div dangerouslySetInnerHTML={{ __html: formatLatex(choice.text.text) }} />
</div>
</Button>
{choice.feedback && showAnswer && (

View file

@ -22,7 +22,6 @@
.quizEditor .editSection {
width: 100%;
height: 78vh;
display: flex;
}