When using a dropdown with values containing '&' character the selected value is not displayed on the summary page.


the issue is caused when comparing option values and answer in eq-questionnaire-runner/app/views/contexts/summary/question.py (line 282)
- dropdown answer: Great Britain (England, Scotland & Wales)
- options[value]: Great Britain (England, Scotland & Wales)
Proposed fix based on handling it in _build_radio_answer:
if answer == escape(option["value"]):