Currently when I view an ticket for an epic, I can see all of the issues listed within the epic. I see the ticket number, title, icon depicting the type of issue, status, and the assignee. I need to also see the resolution of the ticket in this list. How can I do this?
You can try to put JS code in announcement banner.
Here is the code to add customfield:
<script type='text/javascript'> AJS.$(document).ready(function() { AJS.$('#ghx-issues-in-epic-table tr').each(function(){ console.log('Found epic table'); var row = this; var issueKey = AJS.$(this).attr("data-issuekey"); AJS.$.getJSON(AJS.contextPath() + '/rest/api/latest/issue/' + issueKey, function(data){ console.log('Got data for - ' + issueKey); var value = data.fields.customfield_10600; console.log('Value - ' + value); var actions = AJS.$(row).find('td.issue_actions'); AJS.$(actions).before('<td class="nav">' + value + '</td>'); }); }); }); </script>
You may want to try to use resolution instead of the customfield
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.