How to Change the Size(Height) of Fix Versions and Affects Versions Select List
Platform Notice: Data Center Only - This article only applies to Atlassian products on the Data Center platform.
Note that this KB was created for the Data Center version of the product. Data Center KBs for non-Data-Center-specific features may also work for Server versions of the product, however they have not been tested. Support for Server* products ended on February 15th 2024. If you are running a Server product, you can visit the Atlassian Server end of support announcement to review your migration options.
*Except Fisheye and Crucible
Summary
The information in this page relates to customizations in Jira. Consequently, Atlassian Support cannot guarantee to provide any support for the steps described on this page as customizations are not covered under Atlassian Support Offerings. Please be aware that this material is provided for your information only and that you use it at your own risk.
Also, please be aware that customizations done by directly modifying files are not included in the upgrade process. These modifications will need to be reapplied manually on the upgraded instance.
Solution
Increasing the Size(Height) of the field
Edit <atlassian-jira/WEB-INF/classes/templates/jira/issue/field/versions-edit.vm
. Change the line:
1
<select multiple name="$field.id" size="#minSelectSize ($versions 1 6)" id="$field.id">
For example, if you wanted to make it 15 (in the case where there are more than 3):
1
<select multiple name="$field.id" size="#minSelectSize ($versions 1 15)" id="$field.id">
Make sure to back up the velocity file before changing it. Keep in mind the notes from Modifying JIRA Templates and JSPs.
Was this helpful?