How do I get rid of strike through's on Jira issues when moved to a specific status with Resolution set on the transition.
use case: We need to create a Resolution on 'Done' status for the issues to show up on the Portfolio plan. When the status category of a status is Done and No resolution is set on it, then the issues wouldn't show up on Jira portfolio. In order to fix this, we have created a Resolution on 'Done' status which fixed the Portfolio issue, but we don't want the strike through's on Jira issues on the board.
Is there a way to disable strike through's with Script Runner or any other effective ways?
You can always use CSS like this below.
.ghx-issue-compact.ghx-done .ghx-key a {
text-decoration: none;
}
You can either insert CSS using the announcement banner (system wide) or if you have ScriptRunner installed then even better as you can set the context where that CSS is loaded.
Thank you very much for your reply !
I've tried adding below CSS in Jira banner, but the strike through's aren't gone yet:
<style type="text/css">.ghx-issue-compact.ghx-done .ghx-key a {
text-decoration: none;
}</style>
Am I doing something different from your suggested solution?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
The code will work for the backlog view (Board). Look for the other CSS classes in different sections and include those as well.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.