Skip to content

Commit

Permalink
Merge pull request #4051 from dpalou/MOBILE-4589
Browse files Browse the repository at this point in the history
MOBILE-4589 qtype_match: Decode HTML of options
  • Loading branch information
NoelDeMartin authored May 16, 2024
2 parents b83f900 + 3beb806 commit 043577b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -589,7 +589,7 @@ export class CoreQuestionBaseComponent<T extends AddonModQuizQuestion = AddonMod

const option: AddonModQuizQuestionSelectOption = {
value: optionEl.value,
label: optionEl.innerHTML,
label: CoreTextUtils.decodeHTML(optionEl.innerHTML),
selected: optionEl.selected,
};

Expand Down

0 comments on commit 043577b

Please sign in to comment.