From 0f2c5525e35a4160eef4bf3d2acba6821420390f Mon Sep 17 00:00:00 2001 From: Kevin Paxman <kpaxman@uwaterloo.ca> Date: Tue, 22 Nov 2022 15:31:28 -0500 Subject: [PATCH] ISTWCMS-5946: modify select count to not adjust if size is already set --- templates/form/select.html.twig | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/templates/form/select.html.twig b/templates/form/select.html.twig index 4042ab97..18ce6dd3 100644 --- a/templates/form/select.html.twig +++ b/templates/form/select.html.twig @@ -12,13 +12,13 @@ * @ingroup themeable */ #} - {# look at the options array and if < 4 then use for the size attribute #} - {% if options|length < 4 %} - {% set select_size = options|length %} - {% endif %} +{# if size is not set, look at the options array and if < 4 then use for the size attribute #} +{% if not attributes.size and options|length < 4 %} + {% set attributes = attributes.setAttribute('size', options|length) %} +{% endif %} {% apply spaceless %} - <select{{ attributes.setAttribute('size', select_size) }}> + <select{{ attributes }}> {% for option in options %} {% if option.type == 'optgroup' %} <optgroup label="{{ option.label }}"> -- GitLab