Is it possible to change the Fix Version/s dropdown menu within the Edit Issue window to show the version numbers in descending order rather than ascending?
Thanks all - given fact that most features of Jira and be customized I was suprised that these fields are hard coded
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
One way would be modifying the versions-edit.vm file (WEB-INF\classes\templates\jira\issue\field)
There is a #foreach loop that iterates through versions, you can reverse it by doing something like this:
#foreach ($version2 in $versions) #set($index = $versions.size() - $velocityCount) #set($version = $versions.get($index))
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Susan
I believe that this issue is related to the following improvement record:
https://jira.atlassian.com/browse/JRA-15011
Also, since this is a system feild, it seems to be a hard coded item and I can't see an option to do it. Anyway, I'd suggest raise a new support ticket at Atlassian Support or to a new improvement request at https://jira.atlassian.com
Cheers,
Paulo Renato
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.