Fix Versions field is empty even though my project has multiple fix Versions

Yassin May 15, 2017

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.

 

 

 

1 answer

1 accepted

0 votes
Answer accepted
Nic Brough -Adaptavist-
Community Leader
Community Leader
Community Leaders are connectors, ambassadors, and mentors. On the online community, they serve as thought leaders, product experts, and moderators.
May 15, 2017

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?

Yassin May 15, 2017

I have Script Runner Installed true,

Yassin May 15, 2017

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.

Nic Brough -Adaptavist-
Community Leader
Community Leader
Community Leaders are connectors, ambassadors, and mentors. On the online community, they serve as thought leaders, product experts, and moderators.
May 16, 2017

I was thinking more of any "behaviours" - do you have any of those in use?

Suggest an answer

Log in or Sign up to answer