Just a heads up: On March 24, 2025, starting at 4:30pm CDT / 19:30 UTC, the site will be undergoing scheduled maintenance for a few hours. During this time, the site might be unavailable for a short while. Thanks for your patience.
×A different Answers question showed how to display the issuetype of sub-tasks as a text label on the parent's issue detail page:
Is there a way I can do this on the issue detail page for an epic, so that I can see the issuetype text label for the issues associated with it?
function modifytext(){ var elements = document.getElementById('greenhopper-epics-issue-web-panel').getElementsByClassName("nav issuetype"); for(var i = 0, length = elements.length; i < length; i++) { if( elements[i].innerHTML.match(/img.*/)){ var extractdata = elements[i].innerHTML; var regex = 'alt=\".*?\"'; var alt = new String(extractdata.match(regex)); var clean = alt.replace('alt="',''); var issuetype = clean.replace('"',''); elements[i].innerHTML = extractdata + ' ' + issuetype; } } } modifytext()
That probably isn't the best way to do it, but that would be one way to get the name of the issue type to show up next to the icon for the epic view. You could add this javascript to the page using a custom field that only shows up for epics on the view screen.
I tried it and it works just fine. Depending on which JIRA version you are using, this would work fine for you too.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.