From 29d050a0b87f67a59914ade7adf56f3ce90f2fca Mon Sep 17 00:00:00 2001 From: alexjanousekGSA Date: Thu, 31 Jul 2025 09:54:08 -0400 Subject: [PATCH] Fixed unit tests --- app/templates/components/select-input.html | 6 +++++- app/templates/views/templates/set-sender.html | 2 +- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/app/templates/components/select-input.html b/app/templates/components/select-input.html index 27577f556..5c5dfae96 100644 --- a/app/templates/components/select-input.html +++ b/app/templates/components/select-input.html @@ -45,7 +45,11 @@
{% if hide_legend %}{% endif %} - {{ field.label.text|safe }} + {% if legend_style == 'usa-legend--large' %} +

{{ field.label.text|safe }}

+ {% else %} + {{ field.label.text|safe }} + {% endif %} {% if hide_legend %}
{% endif %} {% if hint %} diff --git a/app/templates/views/templates/set-sender.html b/app/templates/views/templates/set-sender.html index 9326174d3..293b8e847 100644 --- a/app/templates/views/templates/set-sender.html +++ b/app/templates/views/templates/set-sender.html @@ -16,7 +16,7 @@
{% call form_wrapper() %} - {{ radios(form.sender, option_hints=option_hints) }} + {{ radios(form.sender, legend_style='usa-legend--large', option_hints=option_hints) }}
{{ page_footer('Continue') }}