-
Type:
Suggestion
-
Resolution: Unresolved
-
None
-
Component/s: Issue - Fields
-
None
-
3
-
4
Problem Definition
When an issue has a resolution set, it's not displayed strikethrough in "Issues in Epic" as it's in boards and normal links as seen on the screenshot below:
Suggested Solution
Implement the ability to have the strikethrough in the "Issues in Epic" panel in order to follow the same pattern as the "Issue links" panel.
Workaround
It may be possible to use a front-end workaround, depending on your Jira version.
The following code was tested on Jira 7.13.9 and 8.5.3. Since the Jira front-end code is subject to change at any time, it is possible that this workaround will stop working in the future.
Workaround Steps
Issues on Epic
- Place the following into the Announcement Banner
<script> AJS.$(document).ready(function() { console.log('JRASERVER-70347 Workaround Start'); AJS.$('#ghx-issues-in-epic-table .jira-issue-status-lozenge-green').closest('.issuerow').css('text-decoration','line-through'); });</script> - Any Issue in the Issues in Epic panel with a "Done" type status (green) will now be striked through.
Epics on Initiatives
- Place the following into the Announcement Banner
<script> AJS.$(document).ready(function() { console.log('JRASERVER-70347 Workaround Start'); AJS.$('.jpo-child-issue-table .jira-issue-status-lozenge-green').closest('table.jpo-child-issue-table').css('text-decoration','line-through'); });</script> - Any Epic in the Child issues panel with a "Done" type status (green) will now be striked through.