Hi Everyone,
I have a software project X with a list of Versions defined. I have EPICs and Issues in the EPICs. If i set the issue "project component" then scroll the Fix Versions select list, i do see all my already defined Versions. Now if I set the Component to None and scroll again the fix Versions select list, I dont see my fix Versions, the field is editable but no elements.
Could this be a bug in JIRA ?
PS: I have a long list of Components and Versions > 50.
That sounds like you have some form of add-on or UI customisation that is breaking the system field lists somewhere.
Do you have the Script Runner enabled, or any javascript hacks in the announcement banner or field descriptions?
I am using Script Runner Custom Field with the following source:
import com.atlassian.jira.ComponentManager
def componentManager = ComponentManager.getInstance()
def leads = issue.getComponents().toList()
if (leads) {
def lead = leads?.first()?.lead
if(lead) {
UserUtils.getUser(lead)
}
}
The script never failed.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I was thinking more of any "behaviours" - do you have any of those in use?
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.