Skip to content

Commit

Permalink
feature: allow html to be rendered in next steps and payment skipped …
Browse files Browse the repository at this point in the history
…text (#1261)
  • Loading branch information
ziggy-cyb authored Jun 5, 2024
1 parent 10fded0 commit b74010d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions runner/src/server/views/confirmation.html
Original file line number Diff line number Diff line change
Expand Up @@ -42,12 +42,12 @@ <h2 class="govuk-heading-m">What happens next</h2>
}) }}
{% if paymentSkipped and customText.paymentSkipped %}
<p class="govuk-body">
{{ customText.paymentSkipped }}
{{ customText.paymentSkipped | safe }}
</p>
{% else %}
{% if customText.nextSteps %}
<p class="govuk-body">
{{ customText.nextSteps }}
{{ customText.nextSteps | safe }}
</p>
{% endif %}
{% endif %}
Expand Down

0 comments on commit b74010d

Please sign in to comment.