Compare commits

..

No commits in common. "f4e21ee7a90d461b55d99a2a81899c447a2f0326" and "b46c1c1934e0cf42716877787afe1c12443cdc02" have entirely different histories.

2 changed files with 2 additions and 1 deletions

View file

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

View file

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